/*====== STRUCTURE =======*/
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
    margin: 0px;
    max-width: 100%;
    font-family: "Poppins", sans-serif;
}

.modal-open {
    padding-right: 0 !important;
    overflow: auto !important;
}

body[data-rtl="rtl"] {
    direction: rtl;
    text-align: right;
}

ul {
    padding-left: 0px;
}

ul li {
    list-style-type: none;
}

a {
    cursor: pointer;
}

button,
input,
textarea {
    text-decoration: none !important;
    outline: none !important;
    border: none;
}

::-webkit-input-placeholder {
    display: inline-block;
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
    padding-right: .15em;
    white-space: pre-line;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
    margin-bottom: 0px;
    margin-top: 0px;
}

/*==== NAVBAR  ======*/
.navbar {
    padding: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    background: white;
    position: fixed;
    top: 0;
    z-index: 124;
    width: 100%;
}

.navbar-container {
    width: 100%;
}

.navbar-brand-custom {
    color: rgba(0, 0, 0, .9);
    width: 100%;
    max-width: 800px;
    min-width: 300px;

    font-weight: 700;
    font-size: 28px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    pointer-events: none;
}

.navbar-brand-custom span {
    color: #008b8b;
}

.navbar-brand-custom:hover {
    text-decoration: none;
}

.brand-color-green {
    color: #008B8B;
    font-weight: 600;
}

.navbar-inner {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;

    /* Set the height of navbar-inner to constant 72px */
    height: 72px;
    width: 60vw;
    padding: 20px 0;
}

.info-section {
    background: linear-gradient(
            180deg,
            #edf8f8 0%,
            rgba(237, 248, 248, 0.75) 100%
    );
    position: relative;
    height: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.bottom-images img {
    position: fixed;
    bottom: 0;
}


.city-img {
    left: 0;
}

.rocket-img {
    right: 0;
}

.info-search-section {
    overflow-x: hidden;
}

.info-heading h1 {
    font-weight: 200;
    font-size: 64px;
    line-height: 100px;
    text-align: center;
    color: #002727;
}

.info-heading h1 span {
    color: #008b8b;
    font-weight: 500;
}

/*.input-box {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    left: 20vw;*/
/*    width: calc(60vw + 2.25em);*/
/*}*/

.input-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(60vw + 2.25em);
    margin: auto;
    position: relative;
    left: 1.25em;
}

.search-inner {
    position: relative;
    bottom: 0;
    left: 0;
    max-height: 50vh; /* adjusted to use viewport height */
    width: 100%;
    z-index: 1;
    /*padding: 0 10vw 2.5vw 10vw;*/
    padding-bottom: 2.5vw;
    /*padding: 0 5vw 2vh 5vw; !* using viewport width for left/right padding, and viewport height for bottom *!*/
    /*background: linear-gradient(180deg, rgba(239, 248, 248, 0) 0%, #EFF8F8 37.81%);*/
    transition: max-height 0.3s ease-in-out; /* If you choose to animate its expansion */
}


.search-inner textarea {
    /* Position & Box Model */
    position: relative;
    width: 100%;
    height: 3rem; /* adjusted from 48px to rem units */
    max-height: 8rem; /* adjusted from 120px to rem units */
    padding: 1rem 2.5rem 0.4rem 1rem; /* adjusted from pixels to rem units */

    /* Typography */
    font-size: 1rem; /* adjusted from 15px to rem units, assuming base size of 16px */
    font-weight: 400;
    line-height: 1.2; /* adjusted for better legibility */
    letter-spacing: 0.01em;
    color: #002727;

    /* Background & Borders */
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px; /* Fine to leave in pixels as it's a small value */
    box-shadow: 0px 4px 8px rgba(76, 188, 196, 0.54);
    backdrop-filter: blur(7px);

    /* Overflow & Resizing */
    overflow: hidden;
    overflow-y: scroll;
    resize: none;

    /* Miscellaneous */
    gap: 0.75rem; /* Adjusted from 12px to rem units */
}


.search-inner textarea::-webkit-scrollbar {
    width: 6px;
}

.search-inner textarea::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0 #333;
}

.search-inner textarea::-webkit-scrollbar-thumb {
    background: #008B8B;
    opacity: 0.4;
    border-radius: 5px;
}

.search-inner textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(51, 51, 51, 0.8);
}

.feedback-message {
    resize: none;
    padding: 14px 16px;
    background: #EFF8F8;
    border: 1px solid rgba(0, 139, 139, 0.07);
    border-radius: 8px;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    min-height: 111px;
    margin-top: 20px;
}

.feedback-submission {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.feedback-submit-btn {
    padding: 10px;
    background: #008B8B;
    border: 2px solid #008B8B;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    min-width: 35%;
    margin-top: 13px;
    text-align: center;
    cursor: pointer;
}

.feedback-submit-btn-icon {
    width: 22px;
    height: 20px;
    margin-left: 8px;
}

.feedback-close-btn {
    padding: 10px;
    background: #008B8B;
    border: 2px solid #008B8B;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    min-width: 25%;
    margin-top: 13px;
    text-align: center;
    cursor: pointer;
}

.search-inner textarea::placeholder {
    color: #002727;
}

.ask-btn {
    position: relative;
    right: 2.5em; /* Use em or rem instead of a fixed pixel value. 1em would typically be 16px, but will adjust based on font-size. */
    width: 2.25rem; /* Adjust this based on how big you want the button. This assumes the button should be about 36px at a typical font-size of 16px. */
    height: 2.25rem;
    background: #008B8B;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ask-btn:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 139, 139, 0.3);
}

.padding-top {
    padding-top: 72px;
}

.qus {
    margin-bottom: 15px;
}

.qus h3 {
    font-weight: 500;
    font-size: 24px;
    /* line-height: 48px; */
    color: #008b8b;
    width: calc(100% - 50px);
    white-space: pre-wrap;
}

.user-img {
    margin-right: 10px;
}

.ans-box {
    background: #ffffff;
    border-radius: 0 10px 10px 10px;
    padding: 15px 20px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.user-question, .answer-content, .link-list, .answer-item, .sample-question-box {
    font-size: 0.9rem;
    line-height: 1.15rem;
}

.follow-up-question {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    background: #008B8B;
    color: #EFF8F8;
    border-radius: 10px;
    padding: 7px 10px;
    position: relative;
    margin-bottom: 5px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.follow-up-question-text {
    margin-left: 10px;
}

.user-question {
    background: #171818;
    color: #EFF8F8;
    border-radius: 10px;
    padding: 14px 20px;
    width: fit-content;
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
    min-width: 350px;
}

.answer-box {
    position: relative;
    z-index: 1;
    width: 100%;
}

/*.answer-box a {*/
/*    color: #008B8B;*/
/*    text-decoration: underline;*/
/*}*/


.answer-item {
    /* make flexbox */
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 0.7rem;
    /*margin-bottom: 2rem;*/
    width: fit-content;
}

#Message1, #Message2, #Message3 {
    display: none;
}


.welcome-text {
    /* make flexbox */
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 10px 0;
    width: fit-content;
}


.welcome-text img {
    width: 18px !important;
    height: 18px !important;
}

.sample-questions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 999;
}


.sample-question-box {
    width: 60vw;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sample-question-box:hover {
    cursor: pointer;
}

.sample-question-click-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}


.sample-questions-header-title {
    font-size: 16px;
}

.sample-questions-header-subtitle {
    font-size: 13px;
    color: #333;
}

.sample-questions-header {
    width: 60vw;
    margin-bottom: 10px;
}


.user-img {
    position: relative;
    z-index: 1;
}


.qus-inner {
    margin-top: 1rem;
    margin-bottom: 10px;
}


.info-search-section {
    height: auto;
}

.search-section {
    padding-bottom: 50px;
}

.link-list {
    margin-top: 15px;
}

.link-list:empty {
    margin-top: 0;
}

.answer-content {
    width: 100% !important;
    white-space: pre-wrap;
}

.answer-content:empty {
    margin: 14px 20px;
}

/*.link-list a {*/
/*    font-weight: 400;*/
/*    margin-right: 10px;*/
/*    border: 1px solid #008B8B;*/
/*    color: #008B8B;*/
/*    border-radius: 4px;*/
/*    padding: 8px;*/
/*    text-decoration: none;*/
/*}*/

.link-list span {
    cursor: pointer;
    float: right;
    font-size: 1.2rem;
    margin-left: 12px;
    color: #008B8B;
}


.info-modal .modal-dialog {
    height: 100vh;
    display: flex;
    align-items: center;
    max-width: 540px;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
}

.modal-backdrop.fade {
    opacity: 0;
}

.fade.show {
    opacity: 1;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: rgba(0, 15, 15, 0.5);
}

.close {
    opacity: 1;
    color: #008b8b !important;
}

.modal-content {
    margin-top: 1rem;
    min-width: 300px;
    border-radius: 10px;
    border: none;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 16px rgba(76, 188, 196, 0.27);
    backdrop-filter: blur(7px)
}

.modal-header {
    margin-bottom: 15px;
    border-bottom: 0;
    align-items: flex-start;
    color: #008b8b;
    font-size: 1.2rem;
}

.modal-header,
.modal-body {
    padding: 0;
}

.modal-body {
    white-space: normal;
}

.modal-header h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #008b8b;
}

.info-paragraph,
.info-data-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #002727;
}

.info-data-list {
    padding-left: 20px;
}

.info-data-list li {
    list-style-type: decimal;
}

.footer-main-container {
    border-top: 1px solid #badcdc;
    width: 100%;
    padding: 20px 0 0;
    margin-top: 40px;
}

/* .footer-absolute{
	position: absolute;
    left: 0;
    bottom: 30px;
} */
.footer-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #002727;
    text-align: center;
}

.footer-text a {
    color: #008b8b;
}

.ans-paragraph {
    width: calc(100% - 0px);
}

.info-main {
    /*min-height: 75vh;*/
}

.footer-absolute {
    position: absolute;
    width: 100%;
    bottom: 30px;
    z-index: 100;
}

.footer-link,
.footer-link:hover {
    color: #008b8b;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
}

.modal-source {
    padding-left: 25px;
    color: #008b8b !important;
}

.modal .modal-dialog .modal-body::-webkit-scrollbar {
    width: 4px;
}

.modal .modal-dialog .modal-body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px #333;
    border-radius: 10px;
}

.modal .modal-dialog .modal-body::-webkit-scrollbar-thumb {
    background: #008B8B;
    opacity: 0.4;
    border-radius: 10px;
}

.modal .modal-dialog .modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(51, 51, 51, 0.8);
}

.top-img {
    margin-bottom: 30px;
}

.top-img img {
    box-shadow: 0px 10px 50px rgba(0, 139, 139, 0.15);
    border-radius: 50%;
}

.subscribe-info {
    margin: auto;
    margin-bottom: 30px;
    width: 60%;
}

.subscribe-info h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #002727;
    margin-bottom: 15px;
}

.subscribe-info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #002727;
}

.subscribe-box {
    background: #FFFFFF;
    box-shadow: 0px 5px 50px rgba(0, 139, 139, 0.1);
    border-radius: 25px;
    max-width: 610px;
    margin: auto;
    padding: 20px 30px;
}

.privacy-box {
    background: #FFFFFF;
    box-shadow: 0px 5px 50px rgba(0, 139, 139, 0.1);
    border-radius: 10px;
    max-width: calc(100% - 200px);
    margin: auto;
    padding: 20px 30px;
    white-space: pre-line;
}

.sub-des {
    margin-bottom: 40px;
}

.sub-des p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #002727;
}

.sub-des span, .sub-des a {
    color: #008B8B;
    font-weight: 500;
}

.sub-des a {
    text-decoration: underline !important;
}

.sub-input label {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #6E9292;
    margin-bottom: 15px;
    display: block;
}

input {
    caret-color: #171818;
}

textarea {
    caret-color: #171818;
}

.sub-input {
    margin-bottom: 20px;
}

.sub-input input {
    background: #EFF8F8;
    border: 1px solid rgba(0, 139, 139, 0.2);
    border-radius: 6px;
    padding: 14px 16px 14px 14px;
    width: 100%;
    height: 47px;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 19px;
    color: #171818;
}

.error-text {
    margin-top: 5px;
    display: none;
    font-size: 14px;
    opacity: 0.7;
    color: rgb(226, 61, 61);
}

.delete-text {
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.7;
    color: rgb(226, 61, 61);
}

.error-active input {
    border: 1px solid rgb(226, 61, 61);
}

/* Notification */

.notification-container {
    text-align: center;
    margin: 1rem;
}

.notification-text {
    text-shadow: 0 0 0;
    font-size: 0.7rem;
}

.notification-link {
    color: #007bff;
}


.sub-input input::placeholder {
    color: #002727;
    font-weight: 400;
}

.btn-continue {
    /* Changing min-width to percentage, so that it will generalize better if we adjust the window size.*/
    width: 240px;
    padding: 10px;
    background: #008B8B;
    border: 2px solid #008B8B;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all .6s ease-in-out;
}

.claim-account-button {
    white-space: nowrap;
}

.btn-email-signin-link {
    background: transparent;
    color: #008B8B;
}

.form-btn {
    margin: 10px 0 40px;

}

.btn-continue:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 139, 139, 0.3);
}

.sub-bottom-text {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.15rem;
    color: #171818;
}

.sub-bottom-text a {
    color: #008B8B;
    text-decoration: underline !important;
    font-weight: 500;
}

.seprator {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    position: relative;
    color: #002727;
    max-width: 145px;
    margin: 30px auto;
}

.seprator::before {
    content: '';
    position: absolute;
    background: #BADCDC;
    width: 50px;
    height: 1px;
    left: 0;
    top: 10px;
}

.seprator::after {
    content: '';
    position: absolute;
    background: #BADCDC;
    width: 50px;
    height: 1px;
    right: 0;
    top: 10px;
}

.btn-google {
    width: 238px;
    height: 52px;
    background: #FFFFFF;
    border: 1px solid #BADCDC;
    box-shadow: 0px 5px 50px rgba(0, 139, 139, 0.1);
    border-radius: 30px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #002727;
    cursor: pointer;
}

.login-box {
    max-width: 510px;
    margin: auto;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 0 13px 21px rgba(76, 188, 196, 0.4);
    border-radius: 10px;
    margin-top: 2rem;
}


.login-box-chat {
    /*padding: 40px;*/
    display: flex;
    width: 100% !important;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.15rem;
    color: #171818;
}


.login-box-chat label {
    /*font-size: 1rem;*/
    margin-top: 15px;
}


.login-box-chat .login-button-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
    flex-direction: row;
}

.login-button-box {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;

    /* font */
}

.claim-account-button-box {
    display: flex;
    justify-content: start;
    gap: 1.5rem;
    flex-direction: row;
    align-items: center;

}


.substack-invitation {
    width: 40%;
}

/*.text-center {*/
/*    width: 270px;*/

/*}*/

.login-box-chat input {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 16px 14px 52px;
    gap: 10px;
    background: #EFF8F8;
    border: 1px solid rgba(0, 139, 139, 0.2);
    border-radius: 6px;
    width: 100%;
}


.login-heading {
    font-weight: 700;
    font-size: 1rem;
    line-height: 24px;
    color: #171818;
    margin-bottom: 25px;
}

.forgot-psw, .forgot-psw a {
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 20px;
    color: #008B8B;
    display: block;
    margin-bottom: 30px;
    background-color: transparent;
}

.login-main-container {
    /*height: calc(100vh - 320px);*/
    display: flex;
    justify-content: center;
}

.navbar-left-menu {
    position: absolute;
    right: 0;

}

.left-menu-modal {
    position: fixed;
    z-index: 1;
}

.left-menu-modal .modal-content {
    box-shadow: 0 0 16px rgb(76 188 196 / 27%);
}

.left-menu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    white-space: normal;
}

.left-menu-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 19px;
    color: #171818;
    margin-bottom: 20px;
}


.left-menu-paragraph {
    margin-bottom: 0.5rem;
}

.left-menu-paragraph p {
    width: 260px;
    font-size: 0.8rem;
    text-align: center;
}

.left-menu-title span {
    color: #008B8B;
}

.left-menu-box button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    gap: 10px;
    background: #008B8B;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 100%;
}

.left-menu-box button#logout {
    max-width: 300px;
    background: transparent;
    color: #008B8B;
    border: 2px solid #008B8B;
    padding: 12px 16px;
}

.left-menu-box button#reset-password-btn {
    max-width: 300px;
    background: transparent;
    color: #008B8B;
    border: 2px solid #008B8B;
    padding: 12px 16px;
}


.left-menu-box button#delete-account-btn {
    background: #d42b2b;
    /*border: 2px solid #d42b2b;*/
    padding: 12px 16px;
    text-transform: initial;
}

.left-menu-footer {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-left-menu button {
    background-color: transparent;
    color: #008B8B;
}

mark#code-highlight:empty {
    padding-right: 0;
}

mark#code-highlight:empty {
    padding: 0 !important;
}

.login-input-icons {
    width: 100%;
}

.login-input-icons .icon {
    position: absolute;
    padding: 14px 16px;
}

.sub-input .icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 12px;
    height: 47px;
}

.sub-input-icon {
    padding-left: 47px !important;
}


.check-your-email-box button {
    text-align: center;
    padding: 14px 16px;
    gap: 10px;
    min-width: 240px;
    background: #008B8B;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
}

.check-your-email-box {
    padding: 33px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: normal;
}

.check-your-email-box > p > span {
    color: #008B8B;
}


#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.stop-restart-box {
    transform: translateX(-50%);
    top: -50px;
    left: 50%;
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stop-restart-box > button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #283c3c91;
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #FFFFFF;
    min-width: 200px;
    margin-bottom: 8px;
    z-index: 500;
}

.stop-restart-box > button > svg {
    padding-right: 3px;
    color: #FFFFFF;
}

.input-help-text {
    font-size: 0.8rem;
}


/* TODO Terms | Privacy gets lost while zoomed in, find an elegant fix? */

.terms-privacy-container {
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 4vh;
}

/*.terms-privacy-container {*/
/*    padding-bottom: 5px;*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    z-index: 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    font-size: 0.8rem;*/
/*}*/

.terms-privacy-container a {
    color: #171818;
}

.source-headline {
    font-size: 1.2rem;
    color: #008b8b;
    padding-bottom: 2rem;
}

.source-separator {
    border: 0;
    height: 3px;
    background-color: #008b8b;
    margin: 2rem 0rem;
}

.source-documents-icon {
    width: 15px;
    height: 15px;
    margin: 0 2px;
}

.title-logo {
    width: 30px;
    height: 30px;

}

.title-logos {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.source-documents-link {
    font-size: 0.9375rem;
}


.feedback-button {
    color: #008b8b;
    width: 1em;
    height: 1em;
}

.popup-feedback-button {
    color: #008b8b;
    margin-bottom: 4px;
    width: 16px;
    height: 16px;
}

.user-query {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #171818;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.15rem;
    /*opacity: 0.6;*/
}

.source-entry-header {
    display: flex;
    flex-direction: row;

}

.source-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.25rem;
}

/* Styling that takes place during tutorial mode - START */

.info-qus-section {
    width: fit-content;
    padding-left: calc(20vw - 5px);
}


.privacy-box-container {
    max-width: 1100px;
    margin: auto;
}

.animate-fixed {
    transition: bottom 1.2s ease-in-out, position 0.1s ease-in-out;
}

.animate-all {
    transition: all 1.2s ease-in;
}

.transition {
    transition: width 1.2s ease-out, padding-left 1.2s ease-out, padding-right 1.2s ease-out, margin-left 1.2s ease-out, margin-right 1.2s ease-out, bottom 1.2s ease-in;
}

.transition-custom {
    transition: width 1.5s ease-out, padding-left 1.5s ease-out, padding-right 1.5s ease-out, margin-left 1.5s ease-out, margin-right 1.5s ease-out, bottom 1.5s ease-in;
}

/* Styling that takes place during tutorial mode - END */


.delete-account-warning {
    font-weight: bold;
    padding: 1rem 0;
}

.delete-account-button {
    padding: 14px 16px;
    gap: 10px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    border: 2px solid rgba(185, 28, 28);

    color: #FFFFFF;
    background-color: rgba(185, 28, 28);
}

.go-back-button {
    padding: 14px 16px;
    min-width: 200px;
    gap: 10px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #008B8B;
    border: 2px solid #008B8B;
    /*background-color: rgba(185, 28, 28);*/
    background: transparent;
}

.message-to-user {
    padding: 1rem 0;
}

.highlighted-email {
    color: #007bff !important;
}

#message-to-user ul {
    padding: 1rem;
}

#message-to-user li {
    list-style-type: disc;
    padding-left: 0.3rem;
}

.delete-account-button:hover {
    background-color: rgba(155, 0, 0); /* Slightly darker red for example */
    color: #f0f0f0; /* Slightly off-white for the text */
}

.info-main-container {
    overflow-y: scroll;
    /*flex-grow: 1;*/
    flex-grow: 0.0001;
    transition: flex-grow 1.5s ease-out;
}

#main-content {
    height: 100vh;
    justify-content: normal;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.settings-container {
    width: 80%;
    max-width: 800px;
    padding: 72px 46px;
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

#LeftMenuModal {
    overflow-y: scroll;
}

#restore-subsc {
    font-size: 0.8rem !important;
}

.invitation-sent-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.9rem;
    line-height: 1.15rem;
}

.invitation-sent-div > p > span {
    color: #008B8B;
}

#existing-email-id {
    color: #008B8B;
}

.button-div-box {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
}


.admin-page-button-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.intermediary_question {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ee905e;
}

.sources_confidence {
    font-weight: 600;
    color: #ee905e;
    margin-top: 0.5rem;
}

.source_list_item a {
    text-decoration: none;
    color: black
}

.modal-body h1 {
    font-size: 25px;
}

.modal-body h2 {
    font-size: 20px;
}

.modal-body h3 {
    font-size: 18px;
}

.user-history-sidebar {
    position: fixed;
    left: 0;
    /*top: 20%; !* Adjust based on navbar height *!*/
    width: 250px;  /* Set the width of the sidebar */
    background-color: #f4f4f4; /* Background color */
    height: 100%; /* Control height */
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    overflow-y: auto;
    z-index: 1000; /* Makes sure it sits on top of other content */
}

.user-history-sidebar h3 {
    padding: 10px;
    margin: 0;
    background-color: #ddd; /* Background color for the header */
    text-align: center;
}

.user-history-sidebar ul {
    list-style-type: none;
    padding: 0;
}

.user-history-sidebar li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.user-history-sidebar li a {
    color: #008B8B;
    text-decoration: none;

}

.user-history-sidebar li:last-child {
    border-bottom: none;
}

.user-history-title-container {
    display: flex;
    height: 71px;
}

.user-history-title {
    margin: auto;
    font-size: 32px;
    font-weight: 600;
}


.history-list-outer-div {
    /*width: 230px;*/
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.history-list-inner-div {
    overflow: hidden;
    white-space: nowrap;

    text-overflow: ellipsis;
    max-width: 180px; /* Adjust the max-width as needed */
}

.history-list-menu {

}

.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-button:focus + .dropdown-menu,
.menu-button:active + .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    right: 10px;
    z-index: 1001;
}

.dropdown-menu button {
    background: none;
    border: none;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-menu button:hover {
    background-color: #f4f4f4;
}

.sourceToggleButton {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    background: #008B8B;
    color: #EFF8F8;
    border-radius: 10px;
    padding: 7px 10px;
    position: relative;
    margin-bottom: 5px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}