.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;
}

/* 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:visited {
    color: gray;
}

a:hover {
    color: #4b82b7;
}

hr {
    border: 0;
    border-top: 1px solid #4b82b7;
}

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

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


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

#menu-toggle-button {
    display: none;
}

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

#left {
    width: 250px;
    height: 100%;
    float: left;
}

#right {
    margin-left: 250px;
    background-color: #fff; 
}

#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;
}


/* 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;
    border: none;
    border-radius: 4px;
    width: 150px;
    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: 30px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #dfa168;
    display: inline-block;
}

#login-title-right {
    font-size: 30px;
    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;
}

.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;
    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-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 4px;
    margin: 10px 0px 0px 4px;
    cursor: pointer;
}

.blue-gray-themed-button {
    width: 175px;
    min-width: 150px;
    max-width: 250px;
    background-color: #E8E8E8;
    color: #3a6792;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}

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

.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: #ffffff;
    color: #484848;
    border: 1px solid #E0E0E0;
    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: #A0A0A0;
    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: 130px;
    background-color: #dfa168;
    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;
}

.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 */
}

/* .folder-menu-container {
    position: relative;
    display: inline-block;
}

.folder-menu-class {
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    z-index: 999;
}
.folder-menu-class ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100px;
}
.folder-menu-class li {
    cursor: pointer;
    padding: 5px;
}
.folder-menu-class li:hover {
    background-color: #eee;
} */

.splash-content-class {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 800px;
    padding-top: 15%;
    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 #E0E0E0;
    border-radius: 8px;
    color: #888888;
    padding: 12px;
    font-size: 12px;
}

.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:#585858;
    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;
    display: none !important; /* Add !important to override other styles */
}

.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-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: 6px;
    vertical-align: middle;
    font-size: 20px;    /* ← change this to resize */
    color: inherit;     /* icon inherits button text color */
}

.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;
}

#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: #888888;
    font-size: 13px;
    text-decoration: underline;
    margin-top: 0px;
}

.topics-sample-class {
    display: block;
    font-size: 13px;
    color: #606060;
}

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

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

.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-history-class table {
    border-collapse: collapse; /* use border-collapse:separate to activate rounded corners defined further below */
    border-spacing: 0;
    width: 100%;
}

.chat-history-class th, .chat-history-class td {
    border: 1px solid #C0C0C0;
    padding: 8px;
    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: 100%;
}

.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;
    padding: 20px;
    padding-bottom: 0px;
    margin: auto; 
}

.settings-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;
}

.settings-section-class {
    height: calc(100vh - 137px);
    width: 800px;
    overflow-y: auto;
    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;
}

.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;
    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: absolute;
    bottom: 90px; /* Adjust this value to position above the user-input area */
    left: 60%;
    transform: translateX(-50%);
    z-index: 1000; /* Ensure it is on top */
    font-size: 28px;
    background-color: #ffffff;
    color: #4b82b7; /* Change color to white for better contrast */
    cursor: pointer;
    display: none; /* Initially hidden */
}

.input-section-class {
    position: relative;
    width: 800px;
    height: 80px;
    border: 0px;
    padding: 0px;

    margin: auto;
}

#user-chat-input {
    width: 800px;
    resize: none;
    padding-top: 10px;
    padding-right: 100px;
    padding-left: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    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: 735px; /* Adjust this to move the button left or right */
    top: 45%; /* This positions the top edge of the button at the middle of the parent */
    transform: translateY(-50%); /* This moves the button up by half its own height, */
    background-color: #A0A0A0;
    color: #ffffff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 0px;
    margin-left: 10px; 
    margin-bottom: 10px;
    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;
}


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

.toggle-switch {
    position: relative;
    width: 60px;
    display: inline-block;
    text-align: left;
    top: 10px;
}

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

.toggle-switch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 20px;
}

.toggle-switch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.toggle-switch-inner:before, .toggle-switch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 20px;
    padding: 0;
    line-height: 20px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    box-sizing: border-box;
}

.toggle-switch-inner:before {
    content: "On";
    padding-left: 10px;
    background-color: #34A7C1;
    color: #FFFFFF;
}

.toggle-switch-inner:after {
    content: "Off";
    padding-right: 10px;
    background-color: #EEEEEE;
    color: #999999;
    text-align: right;
}

.toggle-switch-switch {
    display: block;
    width: 18px;
    margin: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    border: 2px solid #ddd;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-inner {
    margin-left: 0;
}

.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-switch {
    right: 0px;
}


/* 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 */
}

.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;
    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 */
}

.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;
}


/* Mobile layout ----------------------------------------------- */
@media (max-width: 768px) {
    body, html {
        font-size: 16px;
    }

    #menu-toggle-button {
        display: block; /* Show the menu toggle button only on mobile */
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 20;
        background-color: transparent;
        color: #000000;
        padding: 0px;
        margin: 0px;
        font-size: 30px;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    #menu-delete-chat-button {
        position: fixed;
        top: 10px;
        left: 10px;
        width: 130px;
        background-color: #dfa168;
        color: #ffffff;
        border: none;
        border-radius: 20px;
        padding: 5px;
        margin: 10px;
        cursor: pointer;
        font-size: 14px;
    }

    #left {
        width: 80%;
        max-width: 250px;
        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: 50px;
    }

    .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;
    }

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

    .splash-content-class,
    .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,
    .resolution-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);
    }

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

    .chat-references-class {
        width: 100%;
        margin: 0;
        height: 70px;
    }

    .input-section-class {
        width: 100%;
        max-width: 400px;
        margin: auto;
    }

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

    #user-chat-input {
        width: 80%;
        margin-left: 15px;
        margin-right: 0px;
        padding: 10px;
        border: 1px solid #A9A9A9;
        box-shadow: none;
        position: relative; /* Ensure it's relative to position the button inside */
    }

    .chat-button {
        position: relative;
        left: 0;  /* Adjust this to move the button left or right */
        top: 0; /* This positions the top edge of the button at the middle of the parent */
        transform: translateY(-55%);  /* This moves the button up by half its own height, */
        background-color: #A0A0A0;
        color: #ffffff;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        padding: 0px;
        margin-left: 0px; 
        margin-bottom: 10px;
        cursor: pointer;
        width: 45px;
        height: 35px;
    }

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

    .chat-references-label-class,
    .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;
    }

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

    .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;
        margin-top: 10px;
    }

    .themed-button {
        width: 160px;
        font-size: 15px;
    }

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

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

    #chat-footer {
        display: none;
    }

}
