body {
    background-color: var(--gst-body);
    margin: 0;
    font-family: 'Montserrat';
    color: var(--gst-body-fontcolor);
    background-image: var(--gst-backgroundimg);
}

.topbar {
    background-color: var(--gst-background-lightgray);
    height: 150px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.topbar-title {
    font-size: 24px;
}

.logo-container {
    margin-left: 10px;
}

.topbar-subtitle {
    font-size: 20px;
    max-width: 240px;
    font-weight: 700;
    text-align: center;
    color: var(--gst-subtitle);
    pointer-events: var(--gst-subtitle-pointer);
    background-image: var(--gst-subtitle-img);
    background-size: 82%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    height: 32px;
}

.topbar-text {
    margin-left: auto;
    font-size: 18px;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 940px;
    margin: 0 auto;
    height: 150px;
}

.topbar-button-container {
    display: flex;
    gap: 9px;
    position: relative;
    margin-bottom: -41px;
}

.topbar-button {
    padding: 10px 20px;
    background-color: var(--gst-background-pink);
    color: #fff;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    width: 95px;
    height: 40px;
    transition: all 0.3s;
    align-self: flex-end;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--gst-border-pink);
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar-button:hover {
    border-radius: 15px;
    background-color: var(--gst-background-whitetowhite);
    font-weight: 700;
    color: var(--gst-text-pink);
    border: 1px solid var(--gst-border-pink)
}

.topbar-button.active {
    background-color: var(--gst-background-whitetowhite);
    border-radius: 15px;
    font-weight: 700;
    color: var(--gst-text-pink);
    border: 1px solid var(--gst-border-pink)
}

.topbar-links {
    display: flex;
    gap: 8px;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}

.topbar-title.logo {
    font-size: 24px;
    transition: all 0.3s;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gst-background-lightgray);
    color: var(--gst-text-pink);
    text-align: center;
    padding: 10px;
    z-index: 100;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
}

.footer-links span {
    padding: 0 15px;
}

.footer a {
    color: var(--gst-text-pink);
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--gst-text-pink-hover);
}

.footer-note {
    margin-top: 10px;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 400;
    color: var(--gst-text-7D7D7D);
}

.column-container {
    width: 940px;
    background-color: var(--gst-background-columncontainer-opacity);
    border-radius: 25px;
    margin: auto;
    margin-top: 30px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

#questionIcon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    z-index: 2;
    background-color: var(--gst-background-pink-hover);
    border-radius: 17px;
    padding: 9px;
    width: 79px;
    text-align: end;
    color: var(--gst-text-on-pink);
    font-weight: 500;
    padding-right: 27px;
    margin: 10px;
    transition: 0.2s;
}

#questionIcon:before {
    content: "\F505";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
}

#questionIcon:hover {
    background-color: var(--gst-background-pink);
}

.purple-button {
    margin: 10px;
    padding: 5px 10px 5px 10px;
    border-radius: 8px;
    background-color: #b47582;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
    font-size: 16px;
    width: fit-content;
    margin-left: auto;
    border: none;
}

.purple-button:hover {
    background-color: #d47c8f;
}

.note {
    background-color: var(--gst-background-yellownote);
    position: absolute;
    height: 95px;
    margin-top: -94px;
    width: 198px;
    padding: 13px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    color: var(--gst-body-fontcolor);
    margin-left: -21px;
    padding-right: 32px;
}

.banner {
    position: relative;
    padding: 10px;
    display: none;
    z-index: 2;
}


#closeBanner {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--gst-body-fontcolor);
    margin-top: -93px;
    margin-right: -48px;
}


.search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    padding: 2px;
    width: 210px;
    margin-top: 11px;
    margin-right: 12px;
}

.search-input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 8px;
    border-radius: 30px;
    font-size: 16px;
    color: #666;
    padding-left: 20px;
    width: 150px;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 7px;
}

.search-button img {
    width: 23px;
    height: 23px;
}

button {
    font-family: 'Montserrat';
}

.swal2-container {
    z-index: 99999 !important;
    color: var(--gst-body-fontcolor) !important;
}

.swal2-popup {
    background-color: var(--gst-background-columncontainer) !important;
    border-radius: 30px !important;
    color: var(--gst-body-fontcolor) !important;
}

.swal2-confirm {
    background-color: #5EBD73 !important;
    color: #fff !important;
    border-radius: 15px !important;
    border: none !important;
    padding: 10px 20px !important;
}

.swal2-cancel {
    background-color: #AF4C4C !important;
    color: #fff !important;
    border-radius: 15px !important;
    border: none !important;
    padding: 10px 20px !important;
}

.swal2-confirm:hover,
.swal2-confirm:focus,
.swal2-cancel:hover,
.swal2-cancel:focus {
    outline: none !important;
    box-shadow: none !important;
}

.swal2-title {
    font-family: 'Poppins' !important;
    font-size: 20px !important;
    color: var(--gst-body-fontcolor) !important;
}

.log-in,
.profile-button,
.log-out {
    font-size: 16px;
    background-color: var(--gst-background-A0CA96);
    border-radius: 37px;
    color: var(--gst-text-on-pink);
    font-weight: 500;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 39px;
    margin-top: 10px;
    padding-left: 12px;
    padding-right: 12px;
    text-decoration: none;
}

.profile-button {
    background-color: var(--gst-background-DFB2BC);
}

.log-out {
    background-color: #A8A8A8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Poppins;
}

.cookie-banner button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    background-color: #4CAF50;
    color: var(--gst-text-white);
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
}

.cookie-banner button.decline {
    background-color: #f44336;
}

.cookie-banner button.config {
    background-color: #ADADAD;
}

.cookie-banner a {
    color: #4CAF50;
    text-decoration: underline;
    cursor: pointer;
}

.cookiemodal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    color: #555;
}

.cookiemodal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.cookieclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.cookieclose:hover,
.cookieclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.cookiemodal-content h2 {
    margin-top: 0;
}

.cookiemodal-content p {
    margin: 10px 0;
}

.cookiemodal-content button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
}

.toggle-container {
    cursor: pointer;
    scale: 153%;
    border-radius: 25px;
    box-shadow: 0px 1.21px 1.21px 0px #00000040;
    margin-top: 10px;
    margin-right: 15px;
}

.toggle-switch {
    width: 40px;
    height: 25px;
    background-color: #D9D9D9;
    border-radius: 25px;
    position: relative;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.toggle-switch::before {
    content: '';
    width: 21px;
    height: 21px;
    background-color: #606060;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.dark-mode .toggle-switch {
    background-color: #606060;
}


.dark-mode .toggle-switch::before {
    transform: translateX(25px);
    background-color: #D9D9D9;
}

.sun-icon, .moon-icon {
    font-size: 18px;
    transition: opacity 0.3s;
}

.sun-icon {
    opacity: 1;
}

.moon-icon {
    opacity: 0;
}

.dark-mode .sun-icon {
    opacity: 0;
}

.dark-mode .moon-icon {
    opacity: 1;
}

.maintenance-notification {
    background-color: #b47582;
    color: white;
    text-align: center;
    padding: 8px 20px;
    width: fit-content;
    font-weight: bold;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    position: relative;
    left: 0;
    right: 0;
}

.dark-mode .maintenance-notification {
    background-color: #af4c4c;
}