body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    background-color: #ffffff !important;
    padding-top: 50px;
    padding-bottom: 20px;
}

.hr-spacing {
    margin-top: 30px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-top: 0px;
    box-sizing: border-box;
    position: relative;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

.tab {
    padding: 10px 20px;
    color: #666666;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
    margin: 0 10px;
}

    .tab:hover {
        background-color: white;
        color: black;
        transform: translateY(-2px);
        border-radius: 4px;
    }

h1 {
    text-align: center;
    color: #666666;
    font-weight: bold;
    font-size: 2.5rem;
    padding-bottom: 20px
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.375rem;
    color: #666666;
    font-weight: 400;
}

textarea,
button,
pre {
    transition: box-shadow 0.3s, transform 0.3s;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(220, 221, 222, 0.15);
    border-radius: 4px;
    margin-bottom: 20px;
    outline: none;
    background: rgba(220, 221, 222, 0.9);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #e8973e;
}

    textarea:hover,
    textarea:focus {
        box-shadow: 0 8px 12px rgba(50, 50, 93, 0.16), 0 2px 6px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #4d4d4f;
    color: white;
    font-size: 1.125rem;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

    button:hover {
        background-color: #e8973e;
        box-shadow: 0 8px 12px rgba(50, 50, 93, 0.16), 0 2px 6px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.output-container {
    margin-top: 50px;
}

h5 {
    margin-bottom: 10px;
    color: #666666;
    font-weight: bold;
    font-size: 1.375rem;
}

pre {
    font-family: 'Calibri', sans-serif;
    font-size: 22px;
    padding: 1.75rem 1rem 1.75rem 1rem;
    background: rgba(246, 246, 246, 0.9);
    border: 1px solid rgba(220, 221, 222, 0.15);
    border-radius: 0.25rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    color: #000;
    text-align: left;
}

    pre:hover {
        box-shadow: 0 8px 12px rgba(50, 50, 93, 0.16), 0 2px 6px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.output-container {
    margin-top: 50px;
}

.output-wrapper {
    position: relative;
}

#copyButton img {
    width: 20px;
    height: 20px;
}

#copyButton:focus {
    outline: none;
}

#copyButton {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    background: none;
    padding: 5px;
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 30px;
}

pre {
    padding: 1.75rem 1rem 1.75rem 1rem;
    position: relative;
    z-index: 0;
    text-align: left;
}

h2,
h3,
p,
ol,
li {
    color: #666666;
}

a {
    color: #e8973e;
}

    a:hover {
        color: #e8973e;
    }

.loading-spinner {
    display: none;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #FFF;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.5s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

button:disabled {
    cursor: not-allowed;
}

button.disabled:hover {
    background-color: #4d4d4f;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    transform: none;
}

.chat-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-history {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(246, 246, 246, 0.9);
    border: 1px solid rgba(220, 221, 222, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    color: #e8973e;
    max-height: 400px;
    overflow-y: auto;
}

.user-message,
.ai-message {
    padding: 10px;
    border-radius: 8px;
    word-wrap: break-word;
    max-width: 80%;
}

.user-message {
    background-color: #e8973e;
    color: #FFFFFF;
    align-self: flex-end;
}

.ai-message {
    background-color: #F5F5F5;
    color: #e8973e;
}

.chat-input-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button-container {
    display: flex;
    gap: 8px;
}

.glass-circle {
    display: none;
}

.body-content {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
}

@media (min-width: 992px) {
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(220, 221, 222, 0.15);
    border-radius: 4px;
    margin-bottom: 20px;
    outline: none;
    background: rgba(220, 221, 222, 0.9);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #e8973e;
    font-size: 18px;
}

    input[type="text"]:hover,
    input[type="text"]:focus {
        box-shadow: 0 8px 12px rgba(50, 50, 93, 0.16), 0 2px 6px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.input-group {
    margin-bottom: 0px; /* Shrink margin between business description features, original was 20 */
}

select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(220, 221, 222, 0.15);
    border-radius: 4px;
    margin-bottom: 20px;
    outline: none;
    background: rgba(220, 221, 222, 0.9);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #e8973e;
    font-size: 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23e8973e" d="M2 3.5L.5 2h3"/></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
}

    select:hover,
    select:focus {
        box-shadow: 0 8px 12px rgba(50, 50, 93, 0.16), 0 2px 6px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.navbar-custom {
    background-color: #e8973e !important;
}

input::placeholder {
    color: #888888; /* Light grey text color */
    font-style: italic;
}

/* Apply CSS to input box */
input {
    background-color: #f2f2f2; /* Light grey background */
    border: none; /* Remove border or customize it to your liking */
    padding: 8px 12px; /* Adjust padding for spacing */
}

textarea::placeholder {
        color: #888888; /* Light grey text color */
        font-style: italic;
    }

/* Apply CSS to input box */
textarea {
    background-color: #f2f2f2; /* Light grey background */
    border: none; /* Remove border or customize it to your liking */
    padding: 8px 12px; /* Adjust padding for spacing */
}

.footer {
    font-size: smaller;
    font-style: italic
}

.quicklinks {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

    .quicklinks a {
        color: #e8973e;
        text-decoration: none;
    }

        .quicklinks a:hover {
            color: #fff;
            text-decoration: underline;
        }

.legend-box {
    position: fixed;
    top: 48%;
    right: 20px;
    transform: translateY(-50%);
    background-color: rgba(220, 221, 222, 0.9);
    border: 0px solid rgba(220, 221, 222, 0.15);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 0px;
    padding: 15px;
    font-size: 14px;
    line-height: 1.4;
    max-height: 60%;
    overflow-y: auto;
    width: 300px;
    text-align: left;
    color: #000; /* change the text color to black */
}

    .legend-box::-webkit-scrollbar {
        width: 5px;
    }

    .legend-box::-webkit-scrollbar-track {
        background-color: rgba(220, 221, 222, 0.9);
    }

    .legend-box::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 5px;
    }

.legend-container {
    border: 0px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    text-align: right;
}

.legend-title {
    cursor: pointer;
    background-color: #4d4d4f; /* Updated button background color to match other buttons */
    padding: 5px 10px; /* Button padding */
    display: inline-block; /* Keep the element inline */
    transition: background-color 0.2s; /* Smooth background color transition */
    color: #fff; /* Updated font color to white */
    font-size: 1.125rem; /* Updated font size */
    text-align: center; /* Center the text */
    z-index: 100;
}

    .legend-title:hover {
        background-color: #e8973e; /* Updated button background color on hover to match other buttons */
        color: #fff; /* Updated font color to black to contrast with the lighter background */
    }

.legend-box {
    margin-top: 10px;
}

.copy-btn {
    font-size: 0.8em;
    padding: 2px 6px;
    margin-left: 10px;
    position: relative;
    bottom: 0;
    right: 0;
    width: 70px; /* Set a specific width */
}




.chat-prompts-container {
    position: relative;
    top: 0;
}

.list-group-item.list-group-item-action {
    cursor: pointer;
    background-color: #f8f9fa;
}

    .list-group-item.list-group-item-action:hover {
        background-color: #e9ecef;
    }

.dropdown-text {
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 2px;
}

label[for="useCurrentLocation"] {
    display: inline-block;
    margin-right: 5px;
    vertical-align: top; /* Add this line for better alignment */
}

input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    outline: none;
    cursor: pointer;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
}

    input[type="checkbox"]:hover {
        box-shadow: 0 0 3px rgba(50, 50, 93, 0.11), 0 0 2px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }