html {
    font-size: 14px;
}

@font-face {
    font-family: 'Nasalization';
    src: url('../font/nasalization.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #7f8284;
}

.header {
    position: fixed;
    top: 0px;
    background-color: #262730;
    color: white;
    padding: 10px 0;
    border-bottom: 3px;
    border-bottom-color: #ff0000;
    border-bottom-style: outset;
    width: 100%;
    z-index: 5;
    max-height: 80px;
    min-height: 80px;
}

    .header img {
        max-height: 53px;
        max-width: 350px;
        position: absolute;
        top: 12px;
    }

    .header .right-side {
        position: absolute;
        right: 0px;
        display: flex;
        align-items: center;
    }

    .header .top-bar-middle {
        margin-right: 2vw;
    }

    .header a {
        color: silver;
        font-family: Nasalization;
        margin-right: 1vw;
        margin-left: 1vw;
    }

    .header #discordButton {
        background: var(--unnamed-color-7289da) 0% 0% no-repeat padding-box;
        border-radius: 22px;
        opacity: 1;
        color: white;
        margin-right: 1vw;
    }

.menu-button {
    display: none;
    cursor: pointer;
}
.top-bar-middle li {
    background-color: #262730;
}

.top-bar, .top-bar ul {
    background-color: #262730;
}

.side-menu {
    position: fixed;
    display: none;
    top: 60px; /* Adjust the top position as needed */
    right: 5px; /* Adjust the right position as needed */
    background-color: #262730; /* Background color of the menu */
    border: 1px solid red; /* Border around the menu */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for a bit of depth */
    padding: 10px; /* Padding inside the menu */
    z-index: 1000; /* Ensure it stays on top */
}

    /* Styling for the links inside the side menu */
    .side-menu a {
        display: block; /* Each link on a new line */
        padding: 8px 10px; /* Padding for each link */
        text-decoration: none; /* Remove underline */
        color: silver; /* Text color */
        min-width: 160px;
    }

.middle-button-group ul.dropdown.menu {
    display: flex; /* Use flexbox for horizontal alignment */
    align-items: center; /* Center items vertically */
    padding: 0;
    margin: 0;
    list-style: none;
}

    .middle-button-group ul.dropdown.menu > li {
        position: relative;
        display: flex; /* Ensure list items are flex containers */
        align-items: center; /* Center content vertically */
    }

        .middle-button-group ul.dropdown.menu > li:not(:last-child)::after {
            content: " /";
            color: silver; /* Color of the divider */
        }

        .middle-button-group ul.dropdown.menu > li a {
            padding: 10px 10px;
            text-decoration: none;
            color: silver; /* Text color */
        }

        .middle-button-group ul.dropdown.menu > li a:hover {
            color: white;
        }

#layer1Dropdown {
    border-color: red;
    background-color: #262730;
}

#layer1Dropdown a:hover, .side-menu a:hover {
    color: white;
}

#layer1Dropdown a {
    border-bottom: 1px solid white;
    padding: 15px;
}

@media (max-width: 335px){
    #dropdownMobile {
        display: block !important;
        margin-right: 30px;
        margin-left: 10px;
    }
    .account-text {
        display: none;
    }
} 
@media (max-width: 650px) {
    #headerLogoSolo {
        display: block;
    }

    #headerLogoLong {
        display: none;
    }
}
@media (max-width: 940px){
    .middle-button-group {
        display: none;
    }

    .menu-button {
        display: block;
    }
}

@media (min-width: 336px) {
    .account-button {
        display: none;
    }
    .account-text {
        display: block;
    }
}
@media (min-width: 651px) {
    #headerLogoSolo {
        display: none;
    }

    #headerLogoLong {
        display: block;
    }
}
@media (min-width: 941px){
    .middle-button-group {
        display: block;
    }

    .menu-button {
        display: none;
    }
}

.top-bar-right a:hover {
    color:white;
}

.subheader {
    background-color: #262730;
    color: white;
    border-bottom: 2px outset #ff0000;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    z-index: 4;
    margin-top: 80px;
    position:fixed;
    width: 100%;
}

.announcement-bar {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

    .announcement-bar p {
        color: silver;
        font-family: Nasalization;
        font-size: 21px;
        font-weight: 100;
        letter-spacing: 2px;
        margin: 0;
    }

    .announcement-bar p:hover {
        color: red;
    }

@media (max-width: 940px) {
    .announcement-bar p {
        font-size: 12px;
    }
}

/* Styles for the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content, hidden by default */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Position below the main button */
    left: 0;
    background-color: #262730;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 120px;
    border-radius: 4px;
    color: silver;
    padding-top: 15px;
    margin-left: 30px;
}

    /* Style for the logout button */
    .dropdown-content a {
        color: silver;
        padding: 10px 12px;
        text-decoration: none;
        display: block;
        border-top: inset 3px white;
    }

/* Hover effect to show the dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Optional: styling for the hover effect */
.dropdown-content a:hover {
    color: red;
}

#dropdownMobile {
    display: none;
}
.dropdown-content-mb {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Align dropdown to the right */
    background-color: #262730;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 120px;
    border-radius: 4px;
}

    /* Dropdown links styling */
    .dropdown-content-mb a {
        color: silver;
        padding: 10px 12px;
        text-decoration: none;
        display: block;
    }

        /* Optional hover styling for dropdown links */
        .dropdown-content-mb a:hover {
            color: red;
        }


/* FOOTER */

.custom-footer {
    bottom: 0;
    width: 100%;
    background-color: #262730;
    color: white;
    padding: 10px 0;
    border-top: 3px;
    border-top-color: red;
    border-top-style: inset;
    font-family: Nasalization;
    margin-top: auto;
    font-size: min(max(2vw, 8px), 14px);
    z-index: 10;
}

    .custom-footer .large-4.cell {
        display: flex;
        justify-content: end;
        align-items: center;
        color: silver;
    }

        .custom-footer .large-4.cell a {
            color: silver;
        }

            .custom-footer .large-4.cell a:hover {
                color: grey;
            }


#footerLogoFull {
    width: max(80px, 7vw);
}

h2 {
    color: black;
}

#2024stats iframe {
    min-width: 100% !important;
    min-height: 8050px !important;
}