/*Main Text*/
.title {
    font-size: 3em;
    margin-bottom: 0em;
}
.sub-title {
    font-size: 2em;
}
.bigger-font {
    font-size: 1.2em;
}
.page-notice {
    margin-top: 0.05em;
}
.claim-notice {
    font-size: 0.9em;
    display: flex;
    justify-content: center;
}
.fine-print{
    font-size: 0.8em;
}
/* body{
    background-color: #0c0c0c;
} */

/*Home button*/

.Ai_Notice {
text-shadow: 0.1em 0.1em 0.15em #000000;
position: sticky;
top: 1em;
opacity: 50%;
font-family: Arial;
font-size: 0.8em;
font-weight: bold;
text-align: center;
margin: 0em;
z-index: 1; 
}
@media (max-width: 480px) {
    .Ai_Notice {
        font-size: 2vw;
    }
}

@media (prefers-color-scheme: light) {
    .Ai_Notice {
    text-shadow: 0.1em 0.1em 0.1em #ffffff;
    }
}

.button-link {
    display: inline-block;
    padding: 0.5em 0.5em;
    background-color: #434343;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 0.5em;
    font-weight: bold;
}
.button-link:hover {
    background-color: #0056b3;
}





/*sidebar*/
.sidebar .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 4em;
}
.sidebar .menu li {
    margin: 1em 0;
}
.sidebar .menu li a {
    color: inherit;
    text-decoration: none;
    font-size: 1.2em;
}
.sidebar .menu li a:hover {
    text-decoration: underline;
}
.sidebar { 
    position: fixed;
    top: 0;
    left: 0;
    width: 15em; 
    height: 100%;
    background-color: #16161630; 
    padding: 1em;
    box-shadow: 0.1em 0 0.5em rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    z-index: 9000; 
    overflow: scroll;
}
.menu-toggle { /* Button to toggle the sidebar */
    color: inherit; 
    position: fixed; 
    top: 1em;
    left: 1em;
    width: 3em; 
    height: 3em; 
    background-color: #33333388; 
    border: none;
    border-radius: 0.5em;
    font-size:1em;
    cursor: pointer;
    z-index: 9001; 
    justify-content: center;
    align-items: center;
    display: flex; 
}

/* Dropdown menu styles */
.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; 
    background-color: inherit; 
    border: none; 
    position: relative;
}
.dropdown-menu li {
    margin: 0; 
}
.dropdown-menu li a {
    color: inherit; 
    text-decoration: none;
    font-size: 1.2em; 
    display: block;
    padding-left: 1em;
}
.sub-dropdown {
    padding-left: 2em;
}
.dropdown-toggle {
    background: none;
    border: none;
    color: inherit; 
    font: inherit;
    cursor: pointer;
    text-align: left;
    padding: 0;
    display: block;
    font-size: 1.2em;
}
.dropdown-menu.open {
    display: block; 
}

/*This takes priority if a light theme is detected on the system*/
@media (prefers-color-scheme: light) { 
    .sidebar {
        box-shadow: 0.1em 0 0.5em rgba(0, 0, 0, 0.1);
        background-color: #1616160a;
    }
    /*
    .sidebar .menu li a {
    }
    */
    .sidebar .menu li a:hover {
        text-decoration: underline;
        color: #0056b3; 
    }
    .button-link:hover {
        background-color: #597fa7;
    }
}


/*This is what allows the content on the page to avoid being behind the sidebar*/
.content-wrapper {
    margin-left: 17em; 
    transition: margin-left 0.3s ease;
}

/* Fullscreen Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer; 
    z-index: 9002; 
}
.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border: none; 
    border-radius: 0; 
    user-select: none; 
}
/*This seemingly needed to stay below all the rest of the CSS or else stuff stopped working properly*/
@media (max-width: 1079px) {
    .sidebar {
        transform: translateX(-100%); 
    }
    .menu-toggle {
        display: flex;
    }
    .sidebar.open {
        transform: translateX(0); 
    }
    .content-wrapper {
        margin-left: 0; 
    }
    .sidebar.open + .content-wrapper {
        margin-left: 0; 
    }
}
@media (min-width: 1080px) {
    .menu-toggle {
        display: none;
    }
}

/* Solid sidebar for small screens + dark theme */
@media (max-width: 1079px) and (prefers-color-scheme: dark) {
    .sidebar {
        background-color: #161616;
    }
}

/* Solid sidebar for small screens + light theme */
@media (max-width: 1079px) and (prefers-color-scheme: light) {
    .sidebar {
        background-color: #e5e5e5;
    }
}

body.force-dark {
    color-scheme: dark;
    background-color: #161616 !important;
    color: #ffffff !important;
}
body.force-dark .sidebar {
    background-color: #16161630 !important; /* transparent dark */
    color: #ffffff !important;
    box-shadow: 0.1em 0 0.5em rgba(0, 0, 0, 0.5);
}
body.force-dark .content-wrapper {
    background-color: transparent !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 1px black;
}
body.force-dark .sidebar {
    background-color: #16161630 !important; /* transparent dark */
    color: #ffffff !important;
    box-shadow: 0.1em 0 0.5em rgba(0, 0, 0, 0.5);
}
body.force-dark .review-item {
        background-color: #4343438a !important; /* solid dark */
        color: #e5e5e5 !important;
        border: 0.3em solid #9f9f9f;
    }
body.force-dark .Ai_Notice {
        text-shadow: 0.1em 0.1em 0.15em #000000;
    }
    body.force-dark .review-form input {
        background: #4343438a;
    }
    body.force-dark .review-form textarea {
        background: #4343438a;
    }