.hidden {
    display: none;
}

#suggestions-right {
    display: block;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #383838;
    background-color: #ffffff;
}

body {
    --sidebar-visible-width: 250px;
    --chat-composer-height: 80px;
}

/* Common elements ----------------------------------------------- */

* {
    box-sizing: border-box;
}

/* Scrollbars for Chrome, Safari and Opera */
::-webkit-scrollbar {
    width: 12px;  /* for vertical scrollbars */
    height: 12px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track {
    background: #e0e0e0; /* light grey */
}

::-webkit-scrollbar-thumb {
    background: #888888; /* dark grey */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888888 #e0e0e0; /* dark grey thumb, light grey track */
}

a {
    color: #4b82b7;
}

a:visited {
    color: gray;
}

a:hover {
    color: #4b82b7;
}

hr {
    border: 0;
    border-top: 1px solid #729bc0;
}

textarea {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

textarea::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Main layout ----------------------------------------------- */

#menu-toggle-button {
    display: none;
    position: fixed;
    top: 10px;
    left: 260px;
    z-index: 30;
    width: 34px;
    height: 34px;
    background-color: #3a6792;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    justify-content: center;
    align-items: center;
    transition: left 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

#menu-toggle-button:hover {
    background-color: #4b82b7;
}

#menu-toggle-button:focus-visible {
    outline: 2px solid #4b82b7;
    outline-offset: 2px;
}

#menu-toggle-button[aria-expanded="false"] {
    background-color: #4b82b7;
}

#menu-toggle-button .menu-toggle-icon-desktop {
    display: inline-block;
    font-size: 15px;
}

#menu-toggle-button .menu-toggle-icon-mobile {
    display: none;
    font-size: 22px;
}

#menu-delete-chat-button {
    display: none;
}

#left {
    width: 250px;
    height: 100%;
    float: left;
    overflow: hidden;
    transition: width 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

#right {
    margin-left: 250px;
    background-color: #fff; 
    transition: margin-left 0.2s ease-in-out;
    will-change: margin-left;
}

@media (min-width: 769px) {
    body.sidebar-collapsed #left {
        width: 0;
        opacity: 0;
        pointer-events: none;
    }

    body.sidebar-collapsed #right {
        margin-left: 0;
    }

    body.sidebar-collapsed {
        --sidebar-visible-width: 0px;
    }

    body.sidebar-collapsed #menu-toggle-button {
        left: 10px;
    }
}

#left-table {
    width: 100%;
    height: 100%;
    border: 0px solid;
    margin: 0px;
    padding: 0px;
    background-color: #f0f0f0;
}

#chat-table {
    width: 100%;
    height: 100%;
    border: 0px solid;
    margin: 0px;
    padding: 0px;
}

/* session expired overlay -------------------------------- */

#session-expired-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: #fff;
}

#session-expired-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
}


/* Cookies warning overlay -------------------------------- */

#cookies-warning-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: #fff;
}

#cookies-warning-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    padding-bottom: 0px;
    background-color: #333;
    border-radius: 8px;
}

/* Feedback overlay -------------------------------- */

.feedback-overlay-class {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background-color: rgba(0, 0, 0, 0.55);
}

.feedback-content-class {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 460px);
    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.feedback-title-class {
    font-size: 17px;
    color: #2f2f2f;
    margin-bottom: 10px;
}

.feedback-textarea-class {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #303030;
}

.feedback-error-class {
    color: #c53b3b;
    font-size: 13px;
    margin-top: 8px;
}

.feedback-actions-class {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

/* Confirm overlay -------------------------------- */

.confirm-overlay-class {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.55);
}

.confirm-content-class {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 420px);
    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.confirm-title-class {
    font-size: 17px;
    color: #2f2f2f;
    margin-bottom: 10px;
    font-weight: bold;
}

.confirm-message-class {
    font-size: 14px;
    color: #303030;
    line-height: 1.5;
    white-space: pre-wrap;
}

.confirm-actions-class {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.confirm-button-class {
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 14px;
    cursor: pointer;
}

.confirm-cancel-button-class {
    background-color: #efefef;
    border-color: #d0d0d0;
    color: #3a3a3a;
}

.confirm-cancel-button-class:hover {
    background-color: #e3e3e3;
}

.confirm-ok-button-class {
    background-color: #3a6792;
    color: #ffffff;
}

.confirm-ok-button-class:hover {
    background-color: #32597d;
}

.confirm-ok-button-class.confirm-danger-button-class {
    background-color: #c94444;
}

.confirm-ok-button-class.confirm-danger-button-class:hover {
    background-color: #b43d3d;
}

/* Source check overlay -------------------------------- */

.source-check-overlay-class {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.6);
}

.source-check-content-class {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(94vw, 920px);
    max-height: min(90vh, 900px);
    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.source-check-title-class {
    font-size: 18px;
    font-weight: 600;
    color: #2f2f2f;
}

.source-check-header-class {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 10px 12px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background-color: #f8fafc;
}

.source-check-header-row-class {
    font-size: 14px;
    color: #343434;
    line-height: 1.45;
}

.source-check-header-label-class {
    font-weight: 600;
    margin-right: 5px;
}

.source-check-header-note-class {
    grid-column: 1 / -1;
    margin-top: 2px;
    font-size: 13px;
    color: #4a4a4a;
    font-style: italic;
}

.source-check-excerpt-class {
    flex: 1;
    min-height: 180px;
    max-height: 52vh;
    overflow-y: auto;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background-color: #fcfcfc;
    color: #2f2f2f;
    padding: 12px;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.source-check-excerpt-class.source-check-excerpt-loading-class {
    display: flex;
    align-items: center;
    justify-content: center;
}

.source-check-loading-indicator-class {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a4a4a;
    font-size: 14px;
    font-style: italic;
}

.source-check-loading-icon-class {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.source-check-match-class {
    background-color: #fff2a8;
    color: #2f2f2f;
    padding: 0 1px;
    border-radius: 2px;
}

.source-check-footer-class {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.source-check-footer-note-class {
    flex: 1 1 320px;
    font-size: 13px;
    color: #4b4b4b;
}

.source-check-link-class {
    flex: 0 1 auto;
    font-size: 14px;
}

.source-check-link-class.is-disabled {
    pointer-events: none;
    opacity: 0.45;
    text-decoration: none;
}

.source-check-close-button-class {
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background-color: #efefef;
    color: #3a3a3a;
    padding: 7px 14px;
    font-size: 14px;
    cursor: pointer;
}

.source-check-close-button-class:hover {
    background-color: #e3e3e3;
}

body.source-check-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .source-check-content-class {
        width: min(96vw, 920px);
        max-height: 92vh;
        padding: 14px;
    }

    .source-check-header-class {
        grid-template-columns: 1fr;
    }

    .source-check-footer-class {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Left bar ----------------------------------------------- */

.side-bar-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;

}

.side-bar-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;

}

.previous-chats-section {
    display: flex;
    justify-content: center;
    align-items: center;

}

.previous-chats-section-column {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;

}

.chat-type-class {
    background-color: #F8F8F8;
    color: #585858;
    border: 1px solid #C8C8C8;
    padding: 5px;
    margin: -3px;
    cursor: pointer;
}

.chat-type-class.selected {
    background-color: #4b82b7;
    color: #ffffff;
}

#chat-factual-button {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#chat-concise-button {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.infohelp-button-class {
    background-color: #E8E8E8;
    color: #3a6792;
    font-weight: bold;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    min-width: 150px;
    max-width: 300px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.infohelp-button-class.selected {
    background-color: #3a6792;
    color: #E8E8E8;
}

#title-left {
    font-size: 30px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #dfa168;
    display: inline-block;
}

#title-right {
    font-size: 30px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #4b82b7;
    display: inline-block;
}

#title-left-mobile {
    display: none;
}

#title-right-mobile {
    display: none;
}

#login-title-left {
    font-size: 60px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #dfa168;
    display: inline-block;
}

#login-title-right {
    font-size: 60px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #4b82b7;
    display: inline-block;
}

#logoff-title-left {
    font-size: 30px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #dfa168;
    display: inline-block;
}

#logoff-title-right {
    font-size: 30px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #4b82b7;
    display: inline-block;
}

#side-slogan {
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #A9A9A9;
}

#new-chat-button {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    font-size: 14px;
    font-weight: bold;
    background-color: #E8E8E8;
    color: #3a6792;
    border: none;
    border-radius: 4px;
    padding: 6px;
    margin: 8px;
    cursor: pointer;
    display: inline-flex;      /* center icon and label vertically */
    align-items: center;       /* vertical centering */
    justify-content: center;   /* center contents horizontally */
}

#chat-primary-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

#primary-navigation-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blue-gray-themed-button.nav-icon-button {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    padding: 6px;
    margin: 8px 4px 8px 0px;
    border-radius: 4px;
    justify-content: center;
}

.blue-gray-themed-button.nav-icon-button i {
    margin-right: 0;
}

.themed-button {
    width: 150px;
    min-width: 150px;
    max-width: 250px;
    background-color: #E8E8E8;
    color: #585858;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.themed-blue-button {
    width: 160px;
    height: 40px;
    font-weight: bold;
    font-size: 14px;
    background-color: #4b82b7;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.simple-blue-button {
    width: 60px;
    background-color: #4b82b7;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 10px 0px 0px 4px;
    cursor: pointer;
}

.simple-blue-button-disabled {
    width: 60px;
    background-color: #E8E8E8;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 10px 0px 0px 4px;
    cursor: not-allowed;
}

.simple-orange-button {
    width: 60px;
    background-color: #dfa168;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 10px 0px 0px 4px;
    cursor: pointer;
}

.simple-orange-button-disabled {
    width: 60px;
    background-color: #E8E8E8;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 10px 0px 0px 4px;
    cursor: not-allowed;
}

.blue-gray-themed-button {
    width: 190px;
    height: 35px;
    white-space: nowrap;
    background-color: #E8E8E8;
    color: #3a6792;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 20px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
    display: inline-flex;      /* center icon and label vertically */
    align-items: center;       /* vertical centering */
    justify-content: center;   /* center contents horizontally */
}

/* Ensure buttons marked hidden do not render despite inline-flex override */
/* .blue-gray-themed-button[hidden], */
.blue-gray-themed-button-disabled[hidden] {
    display: none !important;
}

.blue-gray-themed-button-disabled {
    width: 190px;
    height: 35px;
    white-space: nowrap;
    background-color: #E8E8E8;
    color: #a0a0a0;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 20px;
    padding: 5px;
    margin: 10px;
    cursor: not-allowed;
    display: inline-flex;      /* center icon and label vertically */
    align-items: center;       /* vertical centering */
    justify-content: center;   /* center contents horizontally */
}

.themed-blue-pagination-button-class {
    width: 120px;
    background-color: #E8E8E8;
    color: #3a6792;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    padding: 5px;
    margin: 20px;
    cursor: pointer;
}

.themed-grey-page-button-class {
    background-color: #E8E8E8;
    color: #3a6792;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    width: 30px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.themed-blue-page-button-class {
    background-color: #3a6792;
    color: #E8E8E8;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    width: 30px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.search-box-class {
    background-color: transparent;
    color: #484848;
    border: 1px solid #606060;
    border-radius: 5px;
    padding: 5px;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.icon-ellipsis-button-class {
    background-color: transparent;
    color: #606060;
    font-weight: bold;
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    padding: 4px;
    margin: 0px;
    cursor: pointer;
}

.tooltip-btn {
    position: relative;
    border: none;
    background: none;
    color: #3a6792;
    margin: 10px 0px 0px 0px;
    padding: 5px 0px 0px 0px;
    padding: 0px;
    font-size: 14px;
    cursor: pointer;
  }

  .custom-tooltip {
    visibility: hidden;
    background-color: #444444;
    color: #fff;
    text-align: left;
    font-size: 12px;
    border: 1px solid #A9A9A9;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    bottom: 125%; /* adjust as needed */
    left: 50%;
    transform: translateX(-10%);
    white-space: nowrap;
    z-index: 1;
  }

  .tooltip-btn:hover .custom-tooltip,
  .tooltip-btn:focus .custom-tooltip {
    visibility: visible;
  }

.folder-outline-icon {
    font-size: 18px;
    color: transparent;
    -webkit-text-stroke: 1px #C0C0C0;
}

#add-chat-folder-button i {
    pointer-events: none;
}

#add-folder-button i {
    pointer-events: none;
}

#cancel-folder-button i {
    pointer-events: none;
}

.toggle-folder {
    color: #3572a5;
}

#search-meetings-button i {
    pointer-events: none;
}

.themed-orange-button {
    width: 160px;
    height: 40px;
    font-weight: bold;
    background-color: #cd8037;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.input-elements {
    background-color: #ffffff;
    color: #484848;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    padding: 5px;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
}

select.input-elements,
select.select-folder-class {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    padding-right: 36px;
    min-height: 34px;
    line-height: 1.4;
    font-size: 14px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23484848' d='M1.41 0L6 4.58 10.59 0 12 1.41 6 7.41 0 1.41z'/%3E%3C/svg%3E"), linear-gradient(#ffffff, #ffffff);
    background-repeat: no-repeat;
    background-position: right 12px center, center;
    background-size: 12px 8px, 100% 100%;
    box-shadow: none;
}

select.input-elements:focus,
select.select-folder-class:focus {
    border-color: #4b82b7;
    outline: none;
}

select.input-elements::-ms-expand,
select.select-folder-class::-ms-expand {
    display: none;
}

.input-folder-class {
    width: 175px;
    background-color: #ffffff;
    color: #484848;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    padding: 5px;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 10px;
    margin-bottom: 2px;
}

.select-folder-class {
    width: 175px;
    background-color: #ffffff;
    color: #484848;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    padding: 5px;
    margin-left: 2px;
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 2px;
}

.folder-input-class {
    display: flex;
    flex-direction: row;
    align-items: center; /* vertically center the items */
    gap: 2px; /* optional: adds space between items */
}

.splash-content-class {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 800px;
    padding-top: 8%;
    text-align: center;
    margin-left: calc((100% - 800px - 250px) / 2);
}

#splash-table {
    width: 100%;
    height: 100%;
    padding: 5px;
    border:none;
    text-align: center;
    margin: 0;
}

#splash-title {
    font-size: 20px;
    color: #4b82b7;
    padding: 10px;
}

.splash-text-class {
    padding: 16px;
    font-size: 16px;
}

.access-message-splash-class {
    width: 400px;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    color: #c0c0c0;
    padding: 12px;
    margin: auto;
    font-size: 15px;
}

.cookies-warning-buttons-class {
    width: 400px;
    padding: 12px;
    margin: auto;
}

#language-links {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #4b82b7;
    text-align: center;
}

.flag-icon {
    font-size: 1em; /* adjust as needed */
    margin-right: 5px; /* space between flags */
}

#logoff-content {
    margin-top: 100px;
    margin-right: auto; 
    margin-left: auto;
}

#logoff-table {
    width: 100%;
    padding: 5px;
    border:none;
    text-align: center;
    margin: 0;
}

#logoff-title {
    font-size: 20px;
    color: #4b82b7;
    padding: 10px;
}

.logoff-text {
    padding: 16px;
    font-size: 16px;
}

.logoff-error {
    padding: 16px;
    font-size: 16px;
    color: red;
}



.previous-chats-column {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    /* border: 1px solid #F8F8F8;
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    background-color: #ffffff; */
}

.previous-chats-class {
    width: auto;
    overflow-y: auto;
    border: 0px;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 1.75;
}

.previous-chats-folder-title {
    display: flex; 
    align-items: center;
    color: #808080;
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
}

.folder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em;
    border-bottom: 1px solid #ddd;
}

.folder-toggle-button {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    color: #808080;
    cursor: pointer;
    padding: 0 0.5em;
}

.previous-chats-folder ul { /* partly overriden by chat links button style */
    margin: 0;
    padding-left: 0;
    list-style: none; /* Remove bullet points */
}

.previous-chats-folder ul li { /* partly overriden by chat links button style */
    margin: 2px 0;  /* Reduce vertical spacing */
    padding-left: 0; /* Remove indentation */
    font-size: 14px; /* Set desired font size */
}

#previous-chats-links {
    height: 60vh;
    overflow-y: auto;
}

@media (max-height: 700px) {
    #previous-chats-links {
        height: 40vh;
    }
}

@media (min-height: 701px) and (max-height: 800px) {
    #previous-chats-links {
        height: 45vh;
    }
}

@media (min-height: 801px) and (max-height: 900px) {
    #previous-chats-links {
        height: 50vh;
    }
}

@media (min-height: 901px) {
    #previous-chats-links {
        height: 55vh;
    }
}

.previous-chat-button {
    position: relative; /* makes the position of the .delete-icon relative to the button. */
    background-color: transparent;
    border: none;
    margin-left: 20px;
    padding: 0px 20px 0px 0px;
    font-size: 13px;
    color:#222222;
    cursor: pointer;
}

#chat-send-button .fas {
    font-size: 18px; /* Adjust size as needed */
}

#chat-send-button i {
    pointer-events: none;
}

.previous-chat-button.selected {
    color: #4b82b7;
    font-weight: bold;
}

.previous-chat-button:hover {
    color: #4b82b7;
    font-weight: bold;
}

.delete-icon {
    position: absolute;
    top: 0; /* position the icon at the top of the button */
    right: 5px;  /* position the icon at the right of the button */
    cursor: pointer;
    background-color: transparent;
    color: #dfa168;
    transition: color 0.15s ease-in-out;
    display: none !important; /* Add !important to override other styles */
}

.delete-icon:hover {
    color: #d64545;
}

.previous-chat-button:hover .delete-icon {
    display: block !important; /* Add !important to override other styles */
}

#user-profile {
    margin-top: auto;
    /*position: relative;*/
    text-align: left;
    padding-top: 10px;
}

.profile-section-button {
    width: 150px;
    background-color: #f0f0f0;
    color: #3a6792;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    border: none;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    text-align: left;
    padding-left: 10px;
}

.profile-section-disabled-button {
    width: 150px;
    background-color: #3a3a3a;
    color: #888888;
    border: none;
    padding: 5px;
    margin: 5px;
    cursor: default;
    text-align: left;
    padding-left: 10px;
}

.profile-section-button i {
    margin-right: 8px;
    /* optionally: font-size: 1em; vertical-align: middle; */
}

.profile-section-button .btn-text {
    margin-left: 6px;
}

#new-chat-button i {
    margin-right: 0;
    vertical-align: middle;
    font-size: 18px;    /* ← change this to resize */
    color: inherit;     /* icon inherits button text color */
    line-height: 1;     /* tighten icon box for vertical centering */
}

.user-email-div-class {
    font-size: 13px;
    color: #606060;
    padding: 10px 0px 10px 10px;
}

#welcome-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 95px);
    width: 800px;
    border: none;
    padding: 0px;
    margin: auto;
    text-align: center;
}

#welcome-title-splash {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    padding: 0px;
    color: #888888;
    display: inline-block;
}

#welcome-title {
    font-size: 30px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #888888;
    display: inline-block;
}

.introduction-class {
    display: block;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    color: #333333;
}

#cookies-consent-title {
    font-size: 16px;
    font-weight: bold;
    color: #c0c0c0;
    margin: auto;
    padding-bottom: 20px;
}

#suggestions-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;

}

.suggestions-table {
    width: 300px;
    height: 110px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    margin: 5px;
    padding-left: 5px;
    color: #282828;
}

.suggestions-table td {
    vertical-align: top;
}

.suggestion-button-class {
    border: none;
    background-color: transparent;
    color: #888888;
    font-size: 13px;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
    text-align: left;
}

.suggestion-button-class:hover {
    color: #4b82b7;
}

.link-button-class {
    border: none;
    background-color: transparent;
    color: #606060;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
    text-align: left;
}

.disclaimer-button-class {
    border: none;
    background-color: transparent;
    color: #888888;
    font-size: 13px;
    text-decoration: underline;
    margin-top: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    text-align: left;
}

.disclaimer-button-class:hover {
    color: #4b82b7;
}

.links-class {
    color: #606060;
    font-size: 15px;
    text-decoration: underline;
    margin-top: 0px;
}

.topics-sample-class {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #686868;
}

.deep-search-class {
    margin-top: 40px;
}

.guidance-sentence-class {
    width: 300px;
    color:  #606060;
    border: 1px solid #d4d4d4;
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 30px;
    margin-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.scroll-container-class {
    width: 100%;
    height: calc(100vh - 95px);
    overflow-y: auto;
    padding-bottom: 10px;
}

.chat-history-class {
    width: 800px;
    padding: 20px;
    margin: auto; 
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;


}

.chat-feedback-container {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.chat-feedback-container.chat-feedback-with-score {
    display: flex;
    width: 100%;
}

.chat-feedback-score {
    margin-left: auto;
    color: #8d8d8d;
    font-size: 13px;
    white-space: nowrap;
}

.chat-feedback-button {
    border: 1px solid #d0d0d0;
    background-color: #f7f7f7;
    color: #5a5a5a;
    border-radius: 14px;
    min-width: 34px;
    height: 28px;
    padding: 0 10px;
    cursor: pointer;
}

.chat-feedback-button:hover:not(:disabled) {
    background-color: #ebf2f9;
    color: #3a6792;
}

.chat-feedback-button:disabled {
    opacity: 0.55;
    cursor: default;
}

.chat-feedback-button.is-selected {
    background-color: #dbeaf8;
    color: #244a6d;
    border-color: #9cb8d4;
}

.chat-feedback-status {
    color: #808080;
    font-size: 13px;
}

.chat-feedback-status.error {
    color: #b34040;
}

.chat-history-class h1,
.chat-history-class h2,
.chat-history-class h3 {
    color: #1b4873;
    font-weight: 400;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}

.chat-history-class table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-history-class th {
    background-color: #f3f7fb;
    font-weight: 500;

}

.chat-history-class th,
.chat-history-class td {
    border: 1px solid #d4d4d4;
    padding: 10px 12px;
    text-align: left;

}

.chat-history-class th:first-child {
    border-top-left-radius: 10px;
}
.chat-history-class th:last-child {
    border-top-right-radius: 10px;
}
.chat-history-class tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.chat-history-class tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.help-content-class {
    width: 100%;
    height: calc(100vh - 40px);
    overflow-y: auto;
}

.chat-help-class {
    width: 800px;
    padding: 20px;
    padding-top: 0px;
    margin: auto; 
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.chat-help-class table {
    border-collapse: collapse; /* use border-collapse:separate to activate rounded corners defined further below */
    border-spacing: 0;
    width: 800px;
}

.chat-help-class th, .chat-help-class td {
    border: 1px solid #C0C0C0;
    padding: 8px;
    text-align: left;
}

.chat-help-class th:first-child {
    border-top-left-radius: 10px;
}
.chat-help-class th:last-child {
    border-top-right-radius: 10px;
}
.chat-help-class tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.chat-help-class tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.info-help-class {
    width: 800px;
    margin: auto;
    padding: 20px;
    padding-bottom: 0px;
}

.link-button-class {
    border: none;
    background-color: transparent;
    color: #000000;
    font-size: 16px;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
    text-align: left;
}

.insights-content-class {
    width: 100%;
    height: calc(100vh - 40px);
    overflow-y: auto;
}

.insights-header-class {
    width: 800px;
    margin: auto;
    padding: 10px;
}

.insights-header-actions-class {
    width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 0px;
    margin: 0px;
}

.insights-notice-class {
    text-align: center;
    color: #808080;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}

.insights-title-class {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: auto;
    padding: 10px;
    color: #888888;
    display: inline-block;
}

#get-insight-button {
    background-color: #3a6792;
    color: #E8E8E8;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    width: 120px;
    height: 30px;
    max-width: 250px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.insights-scroll-container-class {
    width: 800px;
    padding: 20px;
    padding-top: 0px;
    text-align: left;
    font-size: 16px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 450;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.insights-scroll-container-class h1,
.insights-scroll-container-class h2,
.insights-scroll-container-class h3 {
    color: #1b4873;
    font-weight: 400;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}
.insights-scroll-container-class h1 {
    font-size: 28px;
}
.insights-scroll-container-class h2 {
    font-size: 22px;
}
.insights-scroll-container-class h3 {
    font-size: 18px;
}
.insights-scroll-container-class table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.insights-scroll-container-class th {
    background-color: #f3f7fb;
    font-weight: 500;

}
.insights-scroll-container-class th,
.insights-scroll-container-class td {
    border: 1px solid #d4d4d4;
    padding: 10px 12px;
    text-align: left;

}
.insights-scroll-container-class th:first-child {
    border-top-left-radius: 10px;
}
.insights-scroll-container-class th:last-child {
    border-top-right-radius: 10px;
}
.insights-scroll-container-class tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.insights-scroll-container-class tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.insights-scroll-container-class li {
    margin: 2px 0;
    padding-left: 0;
    padding-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.insights-meetings-resolutions-list-class {
    width: 800px;
    text-align: center;
    padding: 0px 20px 0px 20px;
    margin: auto;
}

.insights-header-separator-class {
    width: 100%;
    height: 1px;
    margin: auto;
    margin: 0px;
    padding: 0px;
}

.latest-meetings-content-class {
    width: 100%;
    overflow-y: auto;
}

.latest-meetings-container-class {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.latest-meetings-header-class {
    width: 800px;
    margin: auto;
    padding: 10px;
}

.latest-meetings-header-actions-class {
    width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 0px;
    margin: 0px;
}

.latest-meetings-notice-class {
    text-align: center;
    color: #808080;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}

.latest-meetings-title-class {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: auto;
    padding: 10px;
    color: #888888;
    display: inline-block;
}

.latest-meetings-scroll-container-class {
    width: 800px;
    padding: 20px;
    padding-top: 0px;
    text-align: left;
    font-size: 16px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 450;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.latest-meetings-scroll-container-class h1,
.latest-meetings-scroll-container-class h2,
.latest-meetings-scroll-container-class h3 {
    color: #1b4873;
    font-weight: 400;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}
.latest-meetings-scroll-container-class h1 {
    font-size: 28px;
}
.latest-meetings-scroll-container-class h2 {
    font-size: 22px;
}
.latest-meetings-scroll-container-class h3 {
    font-size: 18px;
}
.latest-meetings-scroll-container-class table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.latest-meetings-scroll-container-class th {
    background-color: #f3f7fb;
    font-weight: 500;

}
.latest-meetings-scroll-container-class th,
.latest-meetings-scroll-container-class td {
    border: 1px solid #d4d4d4;
    padding: 10px 12px;
    text-align: left;

}
.latest-meetings-scroll-container-class th:first-child {
    border-top-left-radius: 10px;
}
.latest-meetings-scroll-container-class th:last-child {
    border-top-right-radius: 10px;
}
.latest-meetings-scroll-container-class tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.latest-meetings-scroll-container-class tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.latest-meetings-scroll-container-class li {
    margin: 2px 0;
    padding-left: 0;
    padding-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.latest-meetings-meetings-resolutions-list-class {
    width: 800px;
    text-align: center;
    padding: 0px 20px 0px 20px;
    margin: auto;
}

.latest-meetings-header-separator-class {
    width: 100%;
    height: 1px;
    margin: auto;
    margin: 0px;
    padding: 0px;
}

.latest-meetings-info-label-class {
    font-size: 14px;
    text-align: center;
    color: #2c2c2c;
    background-color: #f3f7fb;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
}

.latest-meeting-card {
    background-color: #f8f8f8;
    border: 1px solid #d4d4d4;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.7;
    box-shadow: 0px 2px 6px rgba(18, 52, 90, 0.08);
}

.latest-meeting-card:last-child {
    margin-bottom: 0px;
}

.latest-meeting-links a {
    color: #1f5a96;
    font-weight: 600;
}

.latest-meeting-links a:hover {
    text-decoration: underline;
}

.latest-summary-toggle {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0px;
    background-color: transparent;
    border: none;
    color: #1f5a96;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.latest-summary-toggle:hover {
    color: #0f3b6f;
}

.latest-summary-toggle:focus-visible {
    outline: 2px solid #9bbcee;
    outline-offset: 3px;
}

.latest-summary-toggle.is-expanded {
    color: #0d2f55;
}

.latest-summary-toggle .toggle-icon {
    transition: transform 0.25s ease;
}

.latest-summary-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.latest-meeting-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.latest-meeting-toggle-row .latest-summary-toggle {
    margin-top: 0px;
}

.evidences-section {
    margin-top: 12px;
}

.latest-meeting-summary {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e3e9f1;
}

.latest-meeting-summary p {
    margin-bottom: 12px;
}

.latest-meeting-summary p:last-child {
    margin-bottom: 0px;
}

.latest-meeting-signals {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e3e9f1;
}

.latest-meeting-signals p {
    margin-bottom: 12px;
}

.latest-meeting-signals p:last-child {
    margin-bottom: 0px;
}

.settings-content-class {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.settings-section-class {
    height: calc(100vh - 10px);
    width: min(920px, calc(100% - 32px));
    overflow-y: auto;
    padding: 22px 0px 28px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.settings-card-class {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #d6e0eb;
    background: #ffffff;
}

.settings-card-header-class {
    margin-bottom: 16px;
}

.settings-card-title-class {
    font-size: 28px;
    font-weight: 700;
    color: #2f557a;
    letter-spacing: 0.01em;
}

.settings-group-class {
    margin-top: 14px;
}

.settings-field-label-class {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f7389;
}

.settings-control-class {
    width: min(420px, 100%);
}

.settings-input-control-class {
    width: min(420px, 100%) !important;
    margin: 0 !important;
    min-height: 38px;
    box-sizing: border-box;
    border-radius: 10px;
}

.settings-theme-group-class {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.settings-theme-copy-class {
    min-width: 0;
}

.settings-field-note-class {
    font-size: 14px;
    color: #4b657e;
}

.settings-inline-actions-class {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.settings-inline-actions-class #add-folder-button,
.settings-inline-actions-class #cancel-folder-button {
    margin: 0;
    min-width: 72px;
    height: 32px;
}

.settings-inline-control-class {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.settings-info-button-class {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.settings-info-button-class i.fas.fa-info-circle {
    font-size: 20px !important;
}

.settings-inline-control-class .custom-tooltip {
    left: auto;
    right: 0;
    transform: none;
    bottom: 140%;
    width: 280px;
    max-width: min(80vw, 280px);
    white-space: normal;
}

.settings-divider-class {
    height: 1px;
    margin: 18px 0px;
    background: linear-gradient(90deg, rgba(100, 130, 162, 0.08) 0%, rgba(100, 130, 162, 0.35) 50%, rgba(100, 130, 162, 0.08) 100%);
}

.settings-delete-account-button-class {
    margin: 0;
    width: auto;
    min-width: 180px;
    height: 38px;
    padding: 0px 18px;
    border: 1px solid #f0cbcb;
    border-radius: 12px;
    background-color: #fceaea;
    color: #a33f3f;
}

.settings-delete-account-button-class:hover {
    background-color: #f9dfdf;
}

.settings-account-group-class {
    margin-top: 0px;
}

.header-class {
    width: 800px;
    height: 35px;
    border: 0px;
    padding: 0px;
    margin: auto;
    margin-top: 0px;
    margin-top: 0px;
    margin-left: 15%; 
    margin-top: 0px; 
    margin-left: 15%;

}

.header-label-class {
    font-size: 14px;
    color: #A9A9A9;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 70px;
}

.chat-references-class {
    width: 800px;
    height: 35px;
    border: 0px;
    padding: 0px;
    margin-top: 0px;
    margin-left: 0px;

}

.chat-references-label-class {
    font-size: 14px;
    color: #606060;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 70px;
}

.reference-button-class {
    width: 165px;
    font-size: 14px;
    background-color: #F0F0F0;
    color: #606060;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}

.muted-input-elements {
    background-color: #ffffff;
    color: #909090;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    padding: 5px;
    margin-left: 2px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.active-input-elements {
    background-color: #ffffff;
    color: #606060;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    padding: 5px;
    margin-left: 2px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 2px;
}

#chat-history {
    visibility: hidden;
}

#scroll-indicator {
    position: fixed;
    bottom: calc(var(--chat-composer-height) + 10px);
    left: calc(var(--sidebar-visible-width) + ((100vw - var(--sidebar-visible-width)) / 2));
    transform: translateX(-50%);
    z-index: 24;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #cad6e3;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #4b82b7;
    box-shadow: 0 6px 18px rgba(17, 35, 52, 0.16);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    display: none;
}

#scroll-indicator::before,
#scroll-indicator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    pointer-events: none;
}

#scroll-indicator::before {
    width: 9px;
    height: 9px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: translate(-50%, -36%) rotate(45deg);
}

#scroll-indicator::after {
    width: 2.5px;
    height: 9px;
    background: currentColor;
    border-radius: 2px;
    transform: translate(-50%, -76%);
}

#scroll-indicator:hover {
    background: #ffffff;
    color: #3f6f9d;
}

#scroll-indicator:focus-visible {
    outline: 2px solid #4b82b7;
    outline-offset: 2px;
}

.input-section-class {
    position: fixed;
    left: calc(var(--sidebar-visible-width) + ((100vw - var(--sidebar-visible-width)) / 2));
    transform: translateX(-50%);
    transition: left 0.2s ease-in-out, width 0.2s ease-in-out;
    will-change: left, width;
    bottom: 8px;
    bottom: calc(env(safe-area-inset-bottom) + 8px);
    z-index: 25;
    width: min(600px, calc(100vw - var(--sidebar-visible-width) - 20px));
    min-height: 80px;
    height: auto;
    border: 0px;
    padding: 0px;
    margin: 0;
}

#user-chat-input {
    width: 100%;
    resize: none;
    padding-top: 10px;
    padding-right: 100px;
    padding-left: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 22px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    box-sizing: border-box;
    overflow-y: hidden;

    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    caret-color: #555e5e;
}

#user-chat-input:focus {
    border: 1px solid #A9A9A9;
    outline: none;
}

#user-chat-input::placeholder {
    color: #888888;
}

.chat-button {
    position: absolute;
    left: auto;
    right: 10px;
    top: auto;
    bottom: 32px;
    transform: none;
    background-color: #A0A0A0;
    color: #ffffff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    width: 45px;
    height: 35px;
}

.chat-button.selected {
    background-color: #4b82b7;
}

#chat-footer {
    display: block;
    position: absolute; /* This will position the footer relative to the #user-input div */
    bottom: 0; /* This will place the footer at the bottom of the #user-input div */
    width: 100%; /* This will make the footer span the entire width of the #user-input div */
    text-align: center;
    color: #A9A9A9;
}

.footer-message-class {
    width: 100%; /* This will make the footer span the entire width of the #user-input div */
    text-align: center;
    color: #A9A9A9;
}

.privacy-button-class {
    border: none;
    background-color: transparent;
    color: #4b82b7;
    font-size: 13px;
    text-decoration: underline;
    margin-top: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    text-align: left;
}

.chat-user-title-class {
    font-size: 20px;
    font-weight: bold;
    background-color: #4b82b7;
    color: #ffffff;
}

.chat-assistant-title-class {
    font-size: 20px;
    font-weight: bold;
    background-color: #dfa168;
    color: #ffffff;
}

.search-msg-span-class {
    color: #A9A9A9;
    font-size: 14px;
    margin-top: 5px;
}

.search-msg-button-class {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: #E8E8E8;
    color: #585858;
    border: 1px solid #D0D0D0;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    padding: 0px;
    margin: 5px;
    cursor: pointer;
}

.reset-search-button-class {
    border: none;
    background-color: transparent;
    color: #D0D0D0;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    text-align: left;
}

.reset-search-button-class.enabled {
    color: #4b82b7;
}

#info-btn i.fas.fa-info-circle {
    font-size: 25px; /* px, rem, em accepted */
    line-height: 1;
    vertical-align: middle;
}

.folder-toggle-button i.toggle-folder {
  font-size: 15px;
  line-height: 1;
  vertical-align: middle;
}


/* Custom toggle element ............................................. */

.toggle-switch {
    position: relative;
    width: 56px;
    display: inline-block;
    top: 0px;
}

.toggle-switch-checkbox {
    position: absolute;
    opacity: 0;
}

.toggle-switch-label {
    display: block;
    position: relative;
    height: 30px;
    cursor: pointer;
    border: 1px solid #becbd9;
    border-radius: 999px;
    background-color: #d4dde8;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.toggle-switch-inner {
    display: none;
}

.toggle-switch-switch {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0px;
    background: #FFFFFF;
    position: absolute;
    top: 2px;
    left: 2px;
    border: 1px solid #b5c3d3;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.toggle-switch-checkbox:checked + .toggle-switch-label {
    background-color: #4b82b7;
    border-color: #4b82b7;
}

.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-switch {
    transform: translateX(26px);
    border-color: #4b82b7;
}

.toggle-switch-checkbox:focus-visible + .toggle-switch-label {
    outline: 2px solid #6a9cd0;
    outline-offset: 2px;
}


/* Meetings list layout ............................................. */

.meetings-content-class {
    width: 100%; /* Ensure the parent container has a defined width */
    display: flex; /* Use flexbox to center the child */
    flex-direction: column;
    justify-content: center; /* Center the child horizontally */
    align-items: center;
}

.meetings-scroll-container-class {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.meetings-header-class {
    width: 800px;
    margin: auto; /* Center the summary section */
}

.meetings-section-class {
    width: 800px; /* Define a width for the summary section */
    padding: 20px;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.meeting-button-class {
    border: none;
    background-color: transparent;
    color: #606060;
    font-size: 13px;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
    text-align: left;
}


/* Summary layout ............................................. */

.participants-notice-class {
    font-size: 14px;
    color: #A9A9A9;
    margin-top: 10px;
    margin-bottom: 10px;
}

.summary-content-class {
    width: 100%; /* Ensure the parent container has a defined width */
    display: flex; /* Use flexbox to center the child */
    flex-direction: column;
    justify-content: center; /* Center the child horizontally */
    align-items: center;
}

.summary-scroll-container-class {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.summary-section-class {
    width: 800px; /* Define a width for the summary section */
    padding: 20px;
    margin: auto; /* Center the summary section */
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.summary-footer-class {
    width: 800px; /* Define a width for the summary section */
    margin: auto; /* Center the summary section */
}

.summary-section-class h1,
.summary-section-class h2,
.summary-section-class h3 {
    color: #1b4873;
    font-weight: 400;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}

.summary-section-class table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.summary-section-class th {
    background-color: #f3f7fb;
    font-weight: bold;

}

.summary-section-class th,
.summary-section-class td {
    border: 1px solid #d4d4d4;
    padding: 10px 12px;
    text-align: left;

}

.summary-section-class th:first-child {
    border-top-left-radius: 10px;
}
.summary-section-class th:last-child {
    border-top-right-radius: 10px;
}
.summary-section-class tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.summary-section-class tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.speaker-summary-button-class {
    border: none;
    background-color: transparent;
    color: #606060;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
    text-align: left;
}

.speaker-summary-button-class:hover {
    color: #4b82b7;
}

.summary-navigation-button-class {
    width: 165px;
    font-size: 14px;
    background-color: #F0F0F0;
    color: #606060;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    padding: 5px;
    margin: 20px;
    cursor: pointer;
}

.speech-content-class {
    width: 100%; /* Ensure the parent container has a defined width */
    display: flex; /* Use flexbox to center the child */
    flex-direction: column;
    justify-content: center; /* Center the child horizontally */
    align-items: center;
}

.speech-scroll-container-class {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.speech-section-class {
    width: 800px; /* Define a width for the summary section */
    padding: 20px;
    margin: auto; /* Center the summary section */
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.speech-footer-class {
    width: 800px; /* Define a width for the summary section */
    margin: auto; /* Center the summary section */
}

.resolution-content-class {
    width: 100%; /* Ensure the parent container has a defined width */
    display: flex; /* Use flexbox to center the child */
    flex-direction: column;
    justify-content: center; /* Center the child horizontally */
    align-items: center;
}

.resolution-scroll-container-class {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.resolution-section-class {
    width: 800px; /* Define a width for the summary section */
    padding: 20px;
    margin: auto; /* Center the summary section */
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.resolution-footer-class {
    width: 800px; /* Define a width for the summary section */
    margin: auto; /* Center the summary section */
}

#summary-footer,
#speech-footer,
#resolution-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.details-footer-buttons-class {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.details-footer-feedback-slot-class {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.details-footer-feedback-slot-class .chat-feedback-container {
    margin-top: 0;
    margin-right: 20px;
}

.resolution-section-class h1,
.resolution-section-class h2,
.resolution-section-class h3 {
    color: #1b4873;
    font-weight: 400;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}

.resolution-section-class table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.resolution-section-class th {
    background-color: #f3f7fb;
    font-weight: bold;

}

.resolution-section-class th,
.resolution-section-class td {
    border: 1px solid #d4d4d4;
    padding: 10px 12px;
    text-align: left;

}

.resolution-section-class th:first-child {
    border-top-left-radius: 10px;
}
.resolution-section-class th:last-child {
    border-top-right-radius: 10px;
}
.resolution-section-class tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.resolution-section-class tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.action-label {
    color: #000000;
    border: none;
    padding: 5px;
    margin: 2px;
    font-size: 14px;
}

.loading-content-class {
    width: 100%; /* Ensure the parent container has a defined width */
    display: flex; /* Use flexbox to center the child */
    flex-direction: column;
    justify-content: center; /* Center the child horizontally */
    align-items: center;
}

.loading-section-class {
    height: calc(100vh - 80px);
    width: 100px; /* Define a width for the summary section */
    overflow-y: auto;
    padding: 20px;
    margin: auto; /* Center the summary section */
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.error-content-class {
    width: 100%; /* Ensure the parent container has a defined width */
    display: flex; /* Use flexbox to center the child */
    flex-direction: column;
    justify-content: center; /* Center the child horizontally */
    align-items: center;
}

.error-section-class {
    height: calc(100vh - 80px);
    width: 500px; /* Define a width for the summary section */
    overflow-y: auto;
    padding: 20px;
    margin: auto; /* Center the summary section */
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: red;
    line-height: 1.75;
}


/* Dashboard layout ............................................. */

.dashboard-content-class {
    width: 100%;
    height: calc(100vh - 40px);
    overflow-y: auto;
}

.dashboard-header-class {
    width: 1200px;
    margin: auto;
    padding: 10px;
}

.dashboard-title-class {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: auto;
    padding: 10px;
    color: #888888;
    display: inline-block;
}

.dashboard-header-actions-class {
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 0px;
    margin: 0px;
}

.dashboard-notice-class {
    font-size: 14px;
    color: #A9A9A9;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dashboard-scroll-container-class {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dashboard-header-class {
    width: 1200px;
    margin: auto;
}

.dashboard-section-class {
    width: 1200px;
    padding: 20px;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.dashboard-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 12px 4px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 320px;
}

.dashboard-card-compact {
    min-height: 230px;
}

.dashboard-card-title {
    font-weight: 600;
    color: #1b4873;
    margin-bottom: 6px;
    font-size: 16px;
}

.dashboard-chart {
    width: 100%;
    min-height: 300px;
    position: relative;
}

.dashboard-chart-canvas {
    min-height: 300px;
}

.dashboard-chart-compact {
    min-height: 190px;
}

.dashboard-chart-compact .dashboard-chart-canvas {
    min-height: 190px;
}

.dashboard-chart-notes {
    margin-top: 6px;
    font-size: 12px;
    color: #606060;
    line-height: 1.4;
    font-style: italic;
}

.dashboard-chart-note {
    margin-top: 2px;
}

.dashboard-chart-reset-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background-color: #dfa168;
    color: #1f2630;
    border: none;
    border-radius: 16px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(223, 161, 104, 0.35);
    z-index: 2;
}

.dashboard-chart-reset-button:disabled {
    cursor: default;
    opacity: 0.6;
    box-shadow: none;
}

.dashboard-tile {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-tile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-tile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-tile-clear-button {
    border: 1px solid #d7e1ee;
    background-color: #ffffff;
    color: #4b82b7;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
}

.dashboard-tile-clear-button:disabled {
    cursor: default;
    opacity: 0.5;
}

.dashboard-tile-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-tile-meta {
    font-size: 13px;
    font-weight: 600;
    color: #606060;
    flex: 1;
}

.dashboard-tile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
}

.dashboard-tile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    background-color: #f4f7fb;
}

.dashboard-tile-row-name {
    flex: 1;
    font-size: 13px;
    color: #1b4873;
}

.dashboard-tile-row-count {
    flex-shrink: 0;
    padding: 2px 8px;
    border-radius: 999px;
    background-color: #e6edf7;
    color: #4b82b7;
    font-size: 12px;
    font-weight: 600;
}

.dashboard-tile-link {
    border: none;
    background: none;
    text-align: left;
    display: flex;
    gap: 10px;
    padding: 6px 4px;
    cursor: pointer;
    color: #1b4873;
    font-size: 13px;
    line-height: 1.4;
}

.dashboard-tile-link:hover {
    background-color: #f2f6fb;
    border-radius: 6px;
}

.dashboard-tile-link:disabled {
    cursor: default;
    opacity: 0.6;
}

.dashboard-tile-icon {
    font-size: 16px;
    padding-top: 2px;
}

.dashboard-tile-icon.meeting {
    color: #4b82b7;
}

.dashboard-tile-icon.resolution {
    color: #dfa168;
}

.dashboard-tile-link-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-tile-symbol {
    font-weight: 600;
    color: #2f4f6f;
}

.dashboard-tile-summary {
    display: flex;
    gap: 6px;
    color: #606060;
}

.dashboard-tile-summary i {
    color: #9aa3ad;
    margin-top: 2px;
}

.dashboard-tile-empty,
.dashboard-tile-loading,
.dashboard-tile-error {
    font-size: 14px;
    color: #606060;
    text-align: center;
    padding: 18px;
}

.dashboard-tile-loading {
    color: #4b82b7;
}

.dashboard-tile-error {
    color: #c0392b;
}

.dashboard-card-loader,
.dashboard-card-error,
.dashboard-card-empty,
.dashboard-empty-state {
    font-size: 14px;
    color: #606060;
    text-align: center;
    padding: 18px;
}

.dashboard-card-error {
    color: #c0392b;
}

.dashboard-card-loader {
    color: #4b82b7;
}

.dashboard-card-empty {
    color: #888888;
}

.dashboard-empty-state {
    margin-top: 8px;
}

#dashboard-get-data-button {
    background-color: #3a6792;
    color: #E8E8E8;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    width: 120px;
    height: 30px;
    max-width: 250px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.dashboard-section-class h1,
.dashboard-section-class h2,
.dashboard-section-class h3 {
    color: #1b4873;
    font-weight: 400;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}

.dashboard-section-class table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dashboard-latest-trends-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.dashboard-latest-trends-table {
    width: 100%;
    table-layout: fixed;
}

.dashboard-section-class th {
    background-color: #f3f7fb;
    font-weight: bold;

}

.dashboard-section-class th,
.dashboard-section-class td {
    border: 1px solid #d4d4d4;
    padding: 10px 12px;
    text-align: left;

}

.dashboard-latest-trends-table td {
    vertical-align: top;
}

.dashboard-latest-trends-table .dashboard-col-date {
    width: 110px;
}

.dashboard-latest-trends-table .dashboard-col-title {
    width: 26%;
    word-break: break-word;
}

.dashboard-latest-trends-table .dashboard-col-source {
    width: 16%;
    word-break: break-word;
}

.dashboard-latest-trends-table .dashboard-col-format {
    width: 12%;
    word-break: break-word;
}

.dashboard-latest-trends-table .dashboard-col-country {
    width: 12%;
    word-break: break-word;
}

.dashboard-latest-trends-table .dashboard-col-signals {
    width: 24%;
    min-width: 280px;
}

.dashboard-latest-trends-link {
    width: 100%;
    align-items: flex-start;
}

.dashboard-signal-bar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #1b4873;
}

.dashboard-signal-bar-filled {
    color: #d9534f;
}

.dashboard-signal-bar-empty {
    color: #c7c7c7;
}

.dashboard-signal-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #1b4873;
}

.dashboard-signal-trend.increasing {
    color: #d9534f;
}

.dashboard-signal-trend.decreasing {
    color: #2e8b57;
}

.dashboard-signal-trend.stable {
    color: #b58900;
}

.dashboard-signal-metrics {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-signal-metric {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.dashboard-signal-metric-label {
    font-weight: 600;
    color: #1b4873;
}

.dashboard-signal-value {
    font-weight: 600;
    color: #1b4873;
}

.dashboard-section-class th:first-child {
    border-top-left-radius: 10px;
}
.dashboard-section-class th:last-child {
    border-top-right-radius: 10px;
}
.dashboard-section-class tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.dashboard-section-class tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.speaker-dashboard-button-class {
    border: none;
    background-color: transparent;
    color: #606060;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
    text-align: left;
}

.speaker-dashboard-button-class:hover {
    color: #4b82b7;
}

.summary-navigation-button-class {
    width: 165px;
    font-size: 14px;
    background-color: #F0F0F0;
    color: #606060;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    padding: 5px;
    margin: 20px;
    cursor: pointer;
}


/* Mobile layout ----------------------------------------------- */
@media (max-width: 768px) {
    body {
        --sidebar-visible-width: 0px;
    }

    body, html {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
        font-size: 16px;
    }

    #menu-toggle-button {
        display: block; /* Show the menu toggle button only on mobile */
        position: fixed;
        top: 10px;
        left: auto;
        right: 10px;
        z-index: 20;
        width: 40px;
        height: 40px;
        background-color: #3a6792;
        color: #ffffff;
        padding: 0;
        margin: 0px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle-button .menu-toggle-icon-desktop {
        display: none;
    }

    #menu-toggle-button .menu-toggle-icon-mobile {
        display: inline-block;
    }

    #menu-delete-chat-button {
        position: fixed;
        top: 10px;
        left: 10px;
        width: auto;
        white-space: nowrap;
        background-color: #df6868;
        color: #ffffff;
        border: none;
        border-radius: 20px;
        padding-top: 5px;
        padding-right: 10px;
        padding-bottom: 5px;
        padding-left: 10px;
        margin: 10px;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
    }

    #login-title-left {
        font-size: 50px;
    }

    #login-title-right {
        font-size: 50px;
    }

    #welcome-title-splash {
        font-size: 25px;
    }

    .blue-gray-themed-button {
        width: auto;
        white-space: nowrap; 
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .blue-gray-themed-button-disabled {
        width: auto;
        white-space: nowrap; 
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .blue-gray-themed-button.nav-icon-button {
        width: 35px;
        min-width: 35px;
        height: 35px;
        min-height: 35px;
        padding: 6px;
        margin: 8px 4px 8px 0px;
        border-radius: 4px;
    }

    .search-box-class {
        font-size: 15px;
    }

    .icon-ellipsis-button-class {
        font-size: 15px;
    }

    .themed-grey-page-button-class {
        font-size: 16px;
    }

    .themed-blue-page-button-class {
        font-size: 16px;
    }

    .reset-search-button-class {
        font-size: 16px;
    }

    #left {
        width: 80%;
        max-width: 350px;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        background-color: #f0f0f0;
        overflow: auto;
        transition: left 0.3s ease-in-out;
        z-index: 20;
    }

    #left.open {
        left: 0;
    }

    #menu-overlay {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 80%; /* Start where the menu ends */
        width: 20%; /* Cover the remaining 20% of the screen */
        height: 100%;
        background-color: transparent; /* Invisible but captures clicks */
        z-index: 15; /* Higher than the content behind but lower than the menu */
    }

    .previous-chats-column {
        padding-top: 0px;
    }

    .previous-chat-button:hover .delete-icon {
        display: none !important; /* Disable the hover effect */
    }

    #right {
        width: 100%; /* Make sure it takes the full width of the screen */
        margin: 0; /* Remove any margin to allow full-width display */
        padding-top: 60px; /* Adjust for the menu button */
    }

    #title-left-mobile {
        display: block;
        font-size: 30px;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        color: #dfa168;
        display: inline-block;
    }

    #previous-chats-links {
        height: 40vh;
    }

    #title-right-mobile {
        display: block;
        font-size: 30px;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        color: #4b82b7;
        display: inline-block;
    }

    #welcome-title {
        display: block;
    }

    #suggestions-left, #suggestions-right {
        display: none;
    }

    #summary-footer,
    #speech-footer,
    #resolution-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0;
        gap: 8px;
    }

    .details-footer-buttons-class .summary-navigation-button-class {
        margin: 12px 8px;
    }

    .details-footer-feedback-slot-class .chat-feedback-container {
        margin-right: 8px;
    }

    .info-help-class {
        display: flex; /* Use flexbox to center the child */
        flex-direction: column;
        justify-content: left; /* Center the child horizontally */
        align-items: left;
        width: 100%;
        padding: 20px;
        padding-bottom: 0px;
        margin: 0; 
    }

    .splash-content-class {
        width: 100%;
        margin: 0;
        padding-top: 1%;
    }

    .header-class,
    .chat-content-class,
    .chat-history-class,
    .summary-section-class,
    .summary-footer-class,
    .meetings-section-class,
    .meetings-header-class,
    .speech-section-class,
    .resolution-section-class,
    .speech-footer-class,
    .loading-section-class,
    .chat-help-class,
    .error-section-class
    {
        width: 100%;
        margin: 0;
    }

    #welcome-content
    {
        width: 100%;
        margin: 0;
        height: calc(100vh - 165px);
    }

    @supports (height: 100dvh) { /* for IOS */
        #welcome-content {
            width: 100%;
            margin: 0;
            min-height: calc(100dvh - 165px);
            height: auto; /* avoid locking exact height */
        }
    }

    .scroll-container-class,
    .settings-section-class
    {
        width: 100%;
        margin: 0;
        height: calc(100vh - 157px);
    }

    @supports (height: 100dvh) { /* for IOS */
        .scroll-container-class,
        .settings-section-class {
            width: 100%;
            margin: 0;
            height: calc(100dvh - 157px);
        }
    }

    .summary-scroll-container-class,
    .meetings-scroll-container-class,
    .speech-scroll-container-class,
    .resolution-scroll-container-class {
        padding-top: 0px;
        height: calc(100vh - 140px);
    }

    @supports (height: 100dvh) { /* for IOS */
        .summary-scroll-container-class,
        .meetings-scroll-container-class,
        .speech-scroll-container-class,
        .resolution-scroll-container-class {
            padding-top: 0px;
            height: calc(100dvh - 140px);
        }
    }

    .help-content-class {
        padding-top: 0px;
        height: calc(100vh - 130px);
    }

    @supports (height: 100dvh) { /* for IOS */
        .help-content-class {
            padding-top: 0px;
            height: calc(100dvh - 130px);
        }
    }

    .chat-references-class {
        display: flex; /* Use flexbox to center the child */
        flex-direction: column;
        justify-content: left; /* Center the child horizontally */
        align-items: left;
        width: 100%;
        margin: 0;
        height: 70px;
    }

    .input-section-class {
        width: calc(100% - 20px);
        max-width: 600px;
        margin: 0;
        min-height: 80px;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 8px;
        bottom: calc(env(safe-area-inset-bottom) + 8px);
        z-index: 10;
    }

    .user-email-div-class {
        padding-top: 0px;
    }

    #user-chat-input {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        padding: 10px;
        padding-right: 60px;
        border: 1px solid #A9A9A9;
        box-shadow: none;
        box-sizing: border-box;
        overflow-y: hidden;
        position: relative; /* Ensure it's relative to position the button inside */
    }

    .chat-button {
        position: absolute;
        left: auto;
        right: 10px;
        top: auto;
        bottom: 32px;
        transform: none;
        background-color: #A0A0A0;
        color: #ffffff;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        padding: 0px;
        margin-left: 0px; 
        margin-bottom: 0px;
        cursor: pointer;
        width: 45px;
        height: 35px;
    }

    .footer-class
    {
        width: 100%;
        margin: 0;
    }

    .chat-references-label-class {
        margin-left: 5px;
        font-size: 17px;
        font-weight: bold;
    }

    .chat-type-class,
    .infohelp-button-class {
        font-size: 16px;
    }

    .previous-chats-class,
    .previous-chats-folder-title,
    .chat-history-class,
    .chat-help-class,
    .settings-section-class,
    .header-label-class,
    .summary-section-class,
    .meetings-section-class,
    .speech-section-class,
    .resolution-section-class,
    .loading-section-class,
    .error-section-class
    {
        font-size: 17px;
        font-weight: 500;
        color: #000000;
    }

    .themed-orange-button,
    .active-input-elements,
    .input-elements,
    .speaker-summary-button-class,
    .meeting-button-class,
    .summary-navigation-button-class,
    .themed-blue-pagination-button-class
    {
        font-size: 15px;
    }

    .previous-chat-button
    {
        font-size: 15px;
        font-weight: bold;
        margin-top: 10px;
        color:#000000;
    }

    .themed-button {
        width: 160px;
        font-size: 15px;
        font-weight: bold;
        color:#000000;
    }

    #new-chat-button {
        width: 35px;
        min-width: 35px;
        height: 35px;
        min-height: 35px;
        font-size: 14px;
        font-weight: bold;
        margin: 8px;
        padding: 6px;
    }

    #dashboard-button,
    #latest-meetings-icon-button,
    #insights-icon-button,
    #dashboard-icon-button {
        display: none !important;
        visibility: hidden !important;
    }

    .reference-button-class,
    .themed-blue-button
    {
        font-size: 14px;
    }

    .custom-tooltip {
        font-size: 15px;
    }

    #user-help-button .fas {
        font-size: 18px; /* Adjust size as needed */
    }

    .input-folder-class,
    .select-folder-class,
    .simple-blue-button,
    .simple-orange-button {
        font-size: 16px;
    }

    .profile-section-button {
        width: 200px;
        font-size: 16px;
    }

    .settings-section-class {
        padding: 14px 0px 20px;
    }

    .settings-card-class {
        width: calc(100% - 12px);
        padding: 16px;
        border-radius: 12px;
    }

    .settings-card-title-class {
        font-size: 24px;
    }

    .settings-theme-group-class {
        align-items: flex-start;
    }

    .settings-control-class,
    .settings-input-control-class {
        width: 100% !important;
    }

    .settings-inline-control-class .custom-tooltip {
        width: min(78vw, 260px);
    }

    #chat-footer {
        display: none;
    }

}
