/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* 
 * MainLayout.razor.css
 * Scoped styles for the main layout shell.
 * 
 * Layout uses a sticky navbar + footer pattern (not the Blazor sidebar template).
 * Sidebar/panel styles from the Blazor template have been removed as unused.
 */

/* ----- Page structure ---------------------------------------------------- */

.page[b-qnvdabhajj] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-qnvdabhajj] {
    flex: 1;
}

/* ----- Blazor Error UI --------------------------------------------------- */

#blazor-error-ui[b-qnvdabhajj] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-qnvdabhajj] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* 
 * Minimal NavMenu styles - relies on site's style.css for navbar styling
 * Only override Blazor-specific behaviors here
 */

/* Style for active NavLink component */
[b-1hbtsik9ue] a.active {
    border-color: #fff !important;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-rmyyr3c4lg],
.components-reconnect-repeated-attempt-visible[b-rmyyr3c4lg],
.components-reconnect-failed-visible[b-rmyyr3c4lg],
.components-pause-visible[b-rmyyr3c4lg],
.components-resume-failed-visible[b-rmyyr3c4lg],
.components-rejoining-animation[b-rmyyr3c4lg] {
    display: none;
}

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


#components-reconnect-modal[b-rmyyr3c4lg] {
    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-rmyyr3c4lg 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-rmyyr3c4lg {
    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;
    }
}
/* /Components/Pages/Managers.razor.rz.scp.css */
.manager-roster[b-u9lc8mgx56] {
    margin: 0;
    padding: 0;
}

.manager-card[b-u9lc8mgx56] {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden;
    display: flex;
    min-height: 236px;
}

.manager-image-link[b-u9lc8mgx56] {
    flex: 0 0 220px;
    aspect-ratio: 1 / 1;
    display: block;
}

.manager-image[b-u9lc8mgx56] {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.manager-content[b-u9lc8mgx56] {
    padding: 0.9rem 1rem;
    flex: 1;
}

.manager-name[b-u9lc8mgx56] {
    font-size: 1.2rem;
    line-height: 1.25;
}

.manager-section-title[b-u9lc8mgx56] {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6c757d;
    margin: 0 0 0.15rem;
}

.manager-text[b-u9lc8mgx56] {
    font-size: 0.92rem;
    line-height: 1.35;
    color: #212529;
}

.manager-clamp[b-u9lc8mgx56] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.manager-modal-backdrop[b-u9lc8mgx56] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.manager-modal[b-u9lc8mgx56] {
    background: #fff;
    border-radius: 12px;
    width: min(760px, 100%);
    max-height: 90vh;
    overflow: auto;
    padding: 1rem 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
    .manager-card[b-u9lc8mgx56] {
        flex-direction: column;
    }

    .manager-image-link[b-u9lc8mgx56] {
        flex: 0 0 auto;
        width: 100%;
    }

    .manager-image[b-u9lc8mgx56] {
        width: 100%;
        height: auto;
    }
}
