/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
.login-shell[b-6th1dvjyfm] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F4FF;
    position: relative;
    overflow: hidden;
}

/* Gradient blob 1 — soft blue top-left */
.login-blob[b-6th1dvjyfm] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
}
.login-blob-1[b-6th1dvjyfm] {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #BDD0FF 0%, #93B3FF 60%, transparent 100%);
    top: -120px; left: -80px;
    animation: blobFloat1-b-6th1dvjyfm 8s ease-in-out infinite;
}
.login-blob-2[b-6th1dvjyfm] {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #C9B8FF 0%, #A98FFF 60%, transparent 100%);
    bottom: -100px; right: -60px;
    animation: blobFloat2-b-6th1dvjyfm 10s ease-in-out infinite;
}
.login-blob-3[b-6th1dvjyfm] {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #BAE6FF 0%, #93C5FD 60%, transparent 100%);
    bottom: 10%; left: 15%;
    animation: blobFloat3-b-6th1dvjyfm 12s ease-in-out infinite;
}
@keyframes blobFloat1-b-6th1dvjyfm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.05); }
}
@keyframes blobFloat2-b-6th1dvjyfm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(1.08); }
}
@keyframes blobFloat3-b-6th1dvjyfm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.04); }
}

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-ngq1dflh1m] { display: flex; height: 100vh; overflow: hidden; }

/* Expanded sidebar */
.sidebar[b-ngq1dflh1m] {
    width: 215px;
    min-width: 215px;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: width 200ms ease, min-width 200ms ease;
    overflow: hidden;
}

/* Collapsed sidebar */
.app-shell.sidebar-collapsed .sidebar[b-ngq1dflh1m] {
    width: 56px;
    min-width: 56px;
}

.main-area[b-ngq1dflh1m] { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
.page-content[b-ngq1dflh1m] { flex: 1; overflow-y: auto; }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-group[b-309r6wx3rj] { margin-top: 2px; }
.nav-group-header[b-309r6wx3rj] {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 16px 16px 6px;
    background: none; border: none; cursor: pointer;
    font-size: 11px; font-weight: 600; color: var(--color-text-muted);
    letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-group-header:hover[b-309r6wx3rj] { color: var(--color-text-dark); }
.nav-group-header svg[b-309r6wx3rj] { transition: transform 150ms; flex-shrink: 0; }
.nav-group-header.collapsed svg[b-309r6wx3rj] { transform: rotate(-90deg); }
.nav-group-items.collapsed[b-309r6wx3rj] { display: none; }
.nav-home[b-309r6wx3rj] { padding: 8px 8px 2px; }
.nav-item[b-309r6wx3rj] { padding: 2px 8px; }
.nav-item[b-309r6wx3rj]  .nav-link {
    display: flex; align-items: center; gap: 10px; height: 36px;
    padding: 0 10px; border-radius: var(--radius-sm);
    font-size: 14px; color: var(--color-text-muted);
    text-decoration: none; transition: background 120ms, color 120ms; white-space: nowrap;
}
.nav-item[b-309r6wx3rj]  .nav-link:hover { background: #F1F5FF; color: var(--color-text-dark); text-decoration: none; }
.nav-item[b-309r6wx3rj]  .nav-link.active { background: var(--color-primary); color: white; }
.nav-item[b-309r6wx3rj]  .nav-link svg { flex-shrink: 0; opacity: 0.75; }
.nav-item[b-309r6wx3rj]  .nav-link.active svg { opacity: 1; }
.sidebar-bottom[b-309r6wx3rj] { margin-top: auto; border-top: 1px solid var(--color-border); padding: 8px 8px; }
.sidebar-bottom .nav-item[b-309r6wx3rj] { padding: 2px 0; }
.signout-form[b-309r6wx3rj] { margin: 0; }
.signout-btn[b-309r6wx3rj] {
    display: flex; align-items: center; gap: 10px; height: 36px; padding: 0 10px;
    border-radius: var(--radius-sm); font-size: 14px; color: var(--color-text-muted);
    background: none; border: none; cursor: pointer; width: 100%; text-align: left;
    transition: background 120ms, color 120ms;
}
.signout-btn:hover[b-309r6wx3rj] { background: var(--color-danger-bg); color: var(--color-danger); }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-u7x8crr5qf],
.components-reconnect-repeated-attempt-visible[b-u7x8crr5qf],
.components-reconnect-failed-visible[b-u7x8crr5qf],
.components-pause-visible[b-u7x8crr5qf],
.components-resume-failed-visible[b-u7x8crr5qf],
.components-rejoining-animation[b-u7x8crr5qf] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-retrying[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-failed[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-u7x8crr5qf] {
    display: block;
}


#components-reconnect-modal[b-u7x8crr5qf] {
    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-u7x8crr5qf 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-u7x8crr5qf 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-u7x8crr5qf 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-u7x8crr5qf]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-u7x8crr5qf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-u7x8crr5qf {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-u7x8crr5qf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-u7x8crr5qf {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-u7x8crr5qf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-u7x8crr5qf] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-u7x8crr5qf] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-u7x8crr5qf] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-u7x8crr5qf] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-u7x8crr5qf] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-u7x8crr5qf] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-u7x8crr5qf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-u7x8crr5qf] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-u7x8crr5qf {
    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/Home.razor.rz.scp.css */
.page-title[b-u8zmh60sxq] { font-size: 20px; font-weight: 700; color: var(--color-text-dark); margin: 0 0 20px; }
.action-row[b-u8zmh60sxq] { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-bottom: 16px; }
.stat-cards[b-u8zmh60sxq] { display: flex; gap: 16px; margin-bottom: 20px; }
.stat-card[b-u8zmh60sxq] { flex: 1; background: white; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 16px 20px; }
.stat-label[b-u8zmh60sxq] { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-value[b-u8zmh60sxq] { font-size: 28px; font-weight: 700; color: var(--color-text-dark); font-variant-numeric: tabular-nums; }
.clickable-row[b-u8zmh60sxq] { cursor: pointer; }
.clickable-row:hover td[b-u8zmh60sxq] { background: var(--color-bg-row-alt); }
/* /Components/Pages/Login.razor.rz.scp.css */
.login-card[b-zln4kqxlqy] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(44, 113, 246, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    width: 440px;
    padding: 48px;
    position: relative;
    z-index: 1;
}
.login-logo[b-zln4kqxlqy] {
    font-size: 20px;
    color: #1D2433;
    margin-bottom: 32px;
    letter-spacing: -0.2px;
}
.login-heading[b-zln4kqxlqy] {
    font-size: 28px;
    font-weight: 700;
    color: #1D2433;
    margin: 0 0 8px;
    line-height: 1.2;
}
.login-sub[b-zln4kqxlqy] {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0 0 32px;
}
