/* /Components/Layout/LoginLayout.razor.rz.scp.css */
/* Anonymous shell (login / access-denied): same house-style header, centered body. */

.layout[b-a82tcnqwe9] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--gray-100);
}

.top-bar[b-a82tcnqwe9] {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-top: 4px solid var(--shell-topbar-stripe);
    border-bottom: 1px solid var(--minor-gray);
    padding: 0.5rem 1.5rem;
    min-height: 56px;
}

.top-bar-brand[b-a82tcnqwe9] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-bar-logo[b-a82tcnqwe9] {
    height: 28px;
    width: auto;
}

.content--centered[b-a82tcnqwe9] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* House-style shell (contracts/app-ui.md): white header with 4px orange top stripe,
   light-gray horizontal nav, content on a light-gray canvas. */

.layout[b-zq1ylc5cnv] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--gray-100);
}

.top-bar[b-zq1ylc5cnv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-top: 4px solid var(--shell-topbar-stripe);
    border-bottom: 1px solid var(--minor-gray);
    padding: 0.5rem 1.5rem;
    min-height: 56px;
}

.top-bar-brand[b-zq1ylc5cnv] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-bar-logo[b-zq1ylc5cnv] {
    height: 28px;
    width: auto;
}

.top-bar-user[b-zq1ylc5cnv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name[b-zq1ylc5cnv] {
    font-size: 0.9rem;
    color: var(--text-color-medium);
}

.main-nav[b-zq1ylc5cnv] {
    background-color: var(--minor-gray);
    border-bottom: 1px solid var(--border-color-light);
}

.content[b-zq1ylc5cnv] {
    flex: 1;
    padding: 1.5rem;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Horizontal menu row per the house style: 30px rows in light grays with a
   light-blue underline on the active item (contracts/app-ui.md, research §2). */

.nav-menu[b-gjv1rwmbmn] {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 30px;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

[b-gjv1rwmbmn] .nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.9rem;
    color: var(--text-color-gray);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: background-color 0.15s, color 0.15s;
}

[b-gjv1rwmbmn] .nav-link:hover {
    background-color: var(--light-gray);
    color: var(--text-color-dark);
}

[b-gjv1rwmbmn] .nav-link.active {
    background-color: var(--light-gray);
    color: var(--text-color-dark);
    border-bottom-color: var(--shell-nav-active-underline);
}

[b-gjv1rwmbmn] .nav-icon {
    font-size: 0.85rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-1meh3druvl],
.components-reconnect-repeated-attempt-visible[b-1meh3druvl],
.components-reconnect-failed-visible[b-1meh3druvl],
.components-pause-visible[b-1meh3druvl],
.components-resume-failed-visible[b-1meh3druvl],
.components-rejoining-animation[b-1meh3druvl] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-1meh3druvl {
    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/LoginPage.razor.rz.scp.css */
.login-container[b-fr7xikzaxt] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.login-card[b-fr7xikzaxt] {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.login-title[b-fr7xikzaxt] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1e1e2d;
}

.login-subtitle[b-fr7xikzaxt] {
    font-size: 0.9rem;
    margin: 0;
}
