/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-4ugwap4ozn] {
    background-color: #000;
    padding: 50px 20px 30px;
}

.site-footer__inner[b-4ugwap4ozn] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.site-footer__logo[b-4ugwap4ozn] {
    height: 22px;
    width: auto;
}

.site-footer__nav[b-4ugwap4ozn] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.site-footer__nav a[b-4ugwap4ozn] {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer__nav a:hover[b-4ugwap4ozn] {
    color: #fff;
}

.site-footer__copyright[b-4ugwap4ozn] {
    font-family: 'Muli', sans-serif;
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}
/* /Components/Layout/Header.razor.rz.scp.css */
.site-header[b-fnfnwi4tur] {
    background-color: #000;
}

.site-header__inner[b-fnfnwi4tur] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 20px;
}

.site-header__logo[b-fnfnwi4tur] {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo img[b-fnfnwi4tur] {
    height: 26px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .site-header__inner[b-fnfnwi4tur] {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */

/* /Components/Layout/Nav.razor.rz.scp.css */
.site-nav__list[b-t899pqwvjq] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a[b-t899pqwvjq] {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.site-nav__list a:hover[b-t899pqwvjq] {
    opacity: 1;
}

@media (max-width: 768px) {
    .site-nav__list[b-t899pqwvjq] {
        gap: 1rem;
    }

    .site-nav__list a[b-t899pqwvjq] {
        font-size: 0.75rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-0yyhudrxdc],
.components-reconnect-repeated-attempt-visible[b-0yyhudrxdc],
.components-reconnect-failed-visible[b-0yyhudrxdc],
.components-pause-visible[b-0yyhudrxdc],
.components-resume-failed-visible[b-0yyhudrxdc],
.components-rejoining-animation[b-0yyhudrxdc] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-retrying[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-failed[b-0yyhudrxdc],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-0yyhudrxdc] {
    display: block;
}


#components-reconnect-modal[b-0yyhudrxdc] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-0yyhudrxdc 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-0yyhudrxdc 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-0yyhudrxdc 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-0yyhudrxdc]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-0yyhudrxdc 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-0yyhudrxdc {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-0yyhudrxdc {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-0yyhudrxdc {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-0yyhudrxdc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-0yyhudrxdc] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-0yyhudrxdc] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-0yyhudrxdc] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-0yyhudrxdc] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-0yyhudrxdc] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-0yyhudrxdc] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-0yyhudrxdc 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-0yyhudrxdc] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-0yyhudrxdc {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
