/* /Components/Layout/KioskLayout.razor.rz.scp.css */
.kiosk-layout[b-hve7xc4gcd] {
    min-height: 100vh;
    background: #eef2f7;
}

.kiosk-main[b-hve7xc4gcd] {
    min-height: 100vh;
    width: 100%;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-gtsqc22fg2] {
    --tenant-primary: #172235;
    --tenant-accent: #1b6ec2;
    display: flex;
    min-height: 100vh;
    background: #f3f4f6;
}

.sidebar[b-gtsqc22fg2] {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    background: var(--tenant-primary);
    color: #d1d5db;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-brand[b-gtsqc22fg2] {
    padding: 20px 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-brand-link[b-gtsqc22fg2] {
    display: block;
    text-decoration: none;
}

.sidebar-brand-logo[b-gtsqc22fg2] {
    display: block;
    width: 100%;
    max-width: 190px;
    height: auto;
}

.sidebar-brand-subtitle[b-gtsqc22fg2] {
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.sidebar-content[b-gtsqc22fg2] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.sidebar-footer[b-gtsqc22fg2] {
    padding: 12px;
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .sidebar-footer a[b-gtsqc22fg2] {
        color: inherit;
        text-decoration: none;
    }

        .sidebar-footer a:hover[b-gtsqc22fg2] {
            text-decoration: underline;
        }

main[b-gtsqc22fg2] {
    flex: 1;
    min-width: 0;
}

.top-row[b-gtsqc22fg2] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 4.5rem;
    padding-right: 1.5rem;
    background: #ffffff;
    border-bottom: 1px solid #dfe3ea;
}

.top-row-brand-link[b-gtsqc22fg2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 0;
}

    .top-row-brand-link img[b-gtsqc22fg2],
    .top-row-brand-logo[b-gtsqc22fg2] {
        display: block;
        height: 44px !important;
        max-height: 44px !important;
        width: auto !important;
        max-width: 190px !important;
        object-fit: contain;
        opacity: 0.9;
        transition: opacity 0.2s ease;
    }

        .top-row-brand-link:hover img[b-gtsqc22fg2],
        .top-row-brand-logo:hover[b-gtsqc22fg2] {
            opacity: 1;
        }



.tenant-account-banner[b-gtsqc22fg2] {
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tenant-account-banner-warning[b-gtsqc22fg2] {
    background: #fff3cd;
    color: #664d03;
}

.tenant-account-banner-danger[b-gtsqc22fg2] {
    background: #f8d7da;
    color: #842029;
}

.content[b-gtsqc22fg2] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Tenant accent applied to Bootstrap primary controls in the page. */
.page[b-gtsqc22fg2]  .btn-primary {
    background-color: var(--tenant-accent);
    border-color: var(--tenant-accent);
    color: #ffffff;
}

    .page[b-gtsqc22fg2]  .btn-primary:hover,
    .page[b-gtsqc22fg2]  .btn-primary:focus {
        background-color: var(--tenant-accent);
        border-color: var(--tenant-accent);
        color: #ffffff;
        filter: brightness(0.9);
    }

.page[b-gtsqc22fg2]  .btn-outline-primary {
    color: var(--tenant-accent);
    border-color: var(--tenant-accent);
}

    .page[b-gtsqc22fg2]  .btn-outline-primary:hover,
    .page[b-gtsqc22fg2]  .btn-outline-primary:focus {
        color: #ffffff;
        background-color: var(--tenant-accent);
        border-color: var(--tenant-accent);
    }

.page[b-gtsqc22fg2]  a:not(.btn):not(.navmenu-link) {
    color: var(--tenant-accent);
}

/* NavMenu links are descendants of this layout. */
.sidebar[b-gtsqc22fg2]  .nav-link.active {
    background-color: var(--tenant-accent);
    border-color: var(--tenant-accent);
    color: #ffffff;
}

.sidebar[b-gtsqc22fg2]  .nav-link:hover {
    border-color: var(--tenant-accent);
}

/* Mobile */
@media (max-width: 900px) {
    .page[b-gtsqc22fg2] {
        flex-direction: column;
        min-height: 100vh;
    }

    .sidebar[b-gtsqc22fg2] {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        min-height: auto;
        background: transparent;
        border-right: none;
        position: sticky;
        top: 0;
        z-index: 1030;
    }

    .sidebar-brand[b-gtsqc22fg2] {
        display: none;
    }

    .sidebar-footer[b-gtsqc22fg2] {
        display: none;
    }

    .sidebar-content[b-gtsqc22fg2] {
        overflow: visible;
    }

    .top-row[b-gtsqc22fg2] {
        display: none;
    }

    .tenant-account-banner[b-gtsqc22fg2] {
        font-size: 0.9rem;
        padding: 0.65rem 0.75rem;
    }

    .content[b-gtsqc22fg2] {
        padding-top: 0.75rem;
    }
}

/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navmenu-shell[b-2m9n9rfqip] {
    display: flex;
    flex-direction: column;
    background: var(--tenant-primary, #1e293b);
    color: #e5e7eb;
    min-height: 100%;
}

.navmenu-topbar[b-2m9n9rfqip] {
    padding: 0;
}

/* 🔥 FIX: hide mobile logo on desktop no matter what */
.navmenu-mobile-brand[b-2m9n9rfqip] {
    display: none !important;
}

.navmenu-topbar-spacer[b-2m9n9rfqip] {
    display: none;
}

.navmenu-brand[b-2m9n9rfqip] {
    display: none;
}

.navmenu-drawer-header[b-2m9n9rfqip] {
    display: none;
}

.navmenu-close[b-2m9n9rfqip] {
    border: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0.25rem 0.4rem;
    border-radius: 8px;
}

    .navmenu-close:hover[b-2m9n9rfqip] {
        background: rgba(255, 255, 255, 0.1);
    }

.navmenu-panel[b-2m9n9rfqip] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.navmenu-account[b-2m9n9rfqip] {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navmenu-user[b-2m9n9rfqip] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f8fafc;
    word-break: break-word;
    line-height: 1.25;
}

.navmenu-links[b-2m9n9rfqip] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1rem 0.75rem 1.25rem;
}

.navmenu-section[b-2m9n9rfqip] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.navmenu-section-title[b-2m9n9rfqip] {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a1a1aa;
    padding: 0 0.75rem 0.35rem;
}

.navmenu-role-label[b-2m9n9rfqip] {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 0.75rem 0.35rem;
}

.navmenu-shell[b-2m9n9rfqip]  a.navmenu-link {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    color: #f1f5f9;
    text-decoration: none;
    line-height: 1.2;
    box-sizing: border-box;
    font-weight: 500;
}

    .navmenu-shell[b-2m9n9rfqip]  a.navmenu-link:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateX(2px);
        transition: all 0.15s ease;
        color: #ffffff;
    }

    .navmenu-shell[b-2m9n9rfqip]  a.navmenu-link.active {
        background: var(--tenant-accent, #3b82f6);
        color: #ffffff;
        font-weight: 700;
        box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.55);
    }

.navmenu-shell[b-2m9n9rfqip]  a.navmenu-link--accent {
    background: color-mix( in srgb, var(--tenant-accent, #2563eb) 20%, transparent );
    border: 1px solid var(--tenant-accent, #60a5fa);
    color: #ffffff;
}

    .navmenu-shell[b-2m9n9rfqip]  a.navmenu-link--accent:hover {
        background: color-mix( in srgb, var(--tenant-accent, #2563eb) 35%, transparent );
        color: #ffffff;
    }

.navmenu-toggle[b-2m9n9rfqip] {
    display: none;
}

.navmenu-backdrop[b-2m9n9rfqip] {
    display: none;
}

.navmenu-drawer[b-2m9n9rfqip] {
    display: contents;
}

.navmenu-user-block[b-2m9n9rfqip] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
    text-align: center;
}

.navmenu-avatar[b-2m9n9rfqip] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tenant-accent, #3b82f6);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.14);
}

.navmenu-avatar-image[b-2m9n9rfqip] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.14);
}

.navmenu-user-email[b-2m9n9rfqip] {
    font-size: 0.82rem;
    color: #cbd5e1;
    word-break: break-word;
    line-height: 1.25;
    margin-top: -0.1rem;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 900px) {

    .navmenu-shell[b-2m9n9rfqip] {
        background: transparent;
        min-height: auto;
    }

    .navmenu-topbar[b-2m9n9rfqip] {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        min-height: 68px;
        padding: 0 1rem;
        background: #ffffff;
        border-bottom: 1px solid #dfe3ea;
        overflow: hidden;
    }

    .navmenu-toggle[b-2m9n9rfqip] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: none;
        background: transparent;
        color: #111827;
        font-size: 1.7rem;
        line-height: 1;
        border-radius: 10px;
    }

        .navmenu-toggle:hover[b-2m9n9rfqip] {
            background: #f3f4f6;
        }

    /* ✅ SHOW logo only on mobile */
    .navmenu-mobile-brand[b-2m9n9rfqip] {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 0 !important;
        min-width: 0 !important;
        max-width: 180px !important;
        overflow: hidden !important;
    }

        .navmenu-mobile-brand img[b-2m9n9rfqip],
        .navmenu-mobile-brand-logo[b-2m9n9rfqip] {
            display: block !important;
            height: 34px !important;
            max-height: 34px !important;
            width: auto !important;
            max-width: 160px !important;
            object-fit: contain !important;
        }

    .navmenu-topbar-spacer[b-2m9n9rfqip] {
        display: block;
        width: 44px;
        height: 1px;
    }

    .navmenu-backdrop[b-2m9n9rfqip] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 1040;
    }

        .navmenu-backdrop.open[b-2m9n9rfqip] {
            opacity: 1;
            pointer-events: auto;
        }

    .navmenu-drawer[b-2m9n9rfqip] {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: min(320px, 86vw);
        height: 100vh;
        background: var(--tenant-primary, #172235);
        color: #e5e7eb;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
        transform: translateX(-102%);
        transition: transform 0.24s ease;
        z-index: 1041;
        overflow-y: auto;
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }

        .navmenu-drawer.open[b-2m9n9rfqip] {
            transform: translateX(0);
        }

    .navmenu-drawer-header[b-2m9n9rfqip] {
        display: flex;
        justify-content: flex-end;
        padding: 0.85rem 0.85rem 0 0.85rem;
    }

    .navmenu-panel[b-2m9n9rfqip] {
        min-height: 100%;
    }
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
.public-layout[b-kgt3t4onjx] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient( circle at top right, rgba(59, 130, 246, 0.12), transparent 28% ), #f8fafc;
}

.public-header[b-kgt3t4onjx] {
    background: #07111f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.public-header-inner[b-kgt3t4onjx],
.public-footer-inner[b-kgt3t4onjx] {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.public-header-inner[b-kgt3t4onjx] {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.public-brand[b-kgt3t4onjx] {
    display: inline-flex;
    align-items: center;
}

.public-logo[b-kgt3t4onjx] {
    display: block;
    width: auto;
    height: 46px;
    object-fit: contain;
}

.public-header-actions[b-kgt3t4onjx] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #cbd5e1;
    font-size: 0.92rem;
}

.public-main[b-kgt3t4onjx] {
    flex: 1;
}

.public-footer[b-kgt3t4onjx] {
    padding: 1.5rem 0;
    color: #94a3b8;
    background: #020617;
}

.public-footer-inner[b-kgt3t4onjx] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
}

.public-footer nav[b-kgt3t4onjx] {
    display: flex;
    gap: 1.25rem;
}

.public-footer a[b-kgt3t4onjx] {
    color: #bfdbfe;
    text-decoration: none;
}

    .public-footer a:hover[b-kgt3t4onjx] {
        color: #ffffff;
    }

@media (max-width: 700px) {
    .public-header-inner[b-kgt3t4onjx] {
        min-height: 70px;
    }

    .public-header-actions span[b-kgt3t4onjx] {
        display: none;
    }

    .public-logo[b-kgt3t4onjx] {
        height: 40px;
    }

    .public-footer-inner[b-kgt3t4onjx] {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-wnakhechlx],
.components-reconnect-repeated-attempt-visible[b-wnakhechlx],
.components-reconnect-failed-visible[b-wnakhechlx],
.components-pause-visible[b-wnakhechlx],
.components-resume-failed-visible[b-wnakhechlx],
.components-rejoining-animation[b-wnakhechlx] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-retrying[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-failed[b-wnakhechlx],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-wnakhechlx] {
    display: block;
}


#components-reconnect-modal[b-wnakhechlx] {
    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-wnakhechlx 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-wnakhechlx 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-wnakhechlx 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-wnakhechlx]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-wnakhechlx 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-wnakhechlx {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-wnakhechlx {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-wnakhechlx {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-wnakhechlx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-wnakhechlx] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-wnakhechlx] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-wnakhechlx] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-wnakhechlx] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-wnakhechlx] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-wnakhechlx] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-wnakhechlx 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-wnakhechlx] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-wnakhechlx {
    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/AdminDashboard.razor.rz.scp.css */
.dashboard-page[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-header[b-mq2vi8skep] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-header-copy[b-mq2vi8skep] {
    min-width: 0;
}

.dashboard-header h1[b-mq2vi8skep] {
    margin: 0;
    font-size: 2rem;
}

.dashboard-header p[b-mq2vi8skep],
.dashboard-subtitle[b-mq2vi8skep] {
    margin: 0.25rem 0 0;
    color: #666;
}

.dashboard-actions[b-mq2vi8skep] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dashboard-install-banner[b-mq2vi8skep] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--tenant-accent, #bfdbfe);
    background: color-mix( in srgb, var(--tenant-accent, #1b6ec2) 8%, white );
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

    .dashboard-install-banner strong[b-mq2vi8skep] {
        display: block;
        color: var(--tenant-accent, #1e3a8a);
        margin-bottom: 0.15rem;
    }

    .dashboard-install-banner p[b-mq2vi8skep] {
        margin: 0;
        color: #475569;
        font-size: 0.92rem;
    }


.dashboard-main-grid[b-mq2vi8skep] {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 1rem;
    align-items: start;
}

.dashboard-panel[b-mq2vi8skep] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.panel-header[b-mq2vi8skep] {
    margin-bottom: 1rem;
}

    .panel-header h3[b-mq2vi8skep] {
        margin: 0;
        font-size: 1.1rem;
    }

.next-shift-panel[b-mq2vi8skep] {
    background: #f8fafc;
}

.next-shift-card[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.next-shift-title[b-mq2vi8skep] {
    font-size: 1.3rem;
    font-weight: 700;
}

.next-shift-position[b-mq2vi8skep] {
    font-size: 1rem;
    font-weight: 600;
}

.next-shift-subtitle[b-mq2vi8skep],
.next-shift-location[b-mq2vi8skep] {
    color: #6b7280;
}

.next-shift-time[b-mq2vi8skep] {
    color: #111827;
    font-weight: 500;
}

.upcoming-list[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upcoming-item[b-mq2vi8skep] {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem;
    background: #fafafa;
}

.upcoming-item-top[b-mq2vi8skep] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.35rem;
}

.upcoming-item-title[b-mq2vi8skep] {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

    .upcoming-item-title span[b-mq2vi8skep] {
        margin-left: 0.35rem;
        color: #666;
    }

.upcoming-item-meta[b-mq2vi8skep] {
    font-size: 0.85rem;
    color: #6b7280;
}

.status-pill[b-mq2vi8skep] {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pill--confirmed[b-mq2vi8skep] {
    background: #dcfce7;
    color: #166534;
}

.status-pill--assigned[b-mq2vi8skep] {
    background: color-mix( in srgb, var(--tenant-accent, #1d4ed8) 14%, white );
    color: var(--tenant-accent, #1d4ed8);
}

.status-pill--pending[b-mq2vi8skep] {
    background: #fef3c7;
    color: #92400e;
}

.status-pill--default[b-mq2vi8skep] {
    background: #e5e7eb;
    color: #374151;
}

.calendar-header-row[b-mq2vi8skep] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-day-name[b-mq2vi8skep] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.calendar-grid[b-mq2vi8skep] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.calendar-cell[b-mq2vi8skep] {
    min-width: 0;
    min-height: 130px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.calendar-cell--muted[b-mq2vi8skep] {
    background: #f9fafb;
    color: #9ca3af;
}

.calendar-cell--today[b-mq2vi8skep] {
    border: 2px solid var(--tenant-accent, #2563eb);
}

.calendar-cell--selected[b-mq2vi8skep] {
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
    background: #f0fdf4;
}

.calendar-date[b-mq2vi8skep] {
    font-size: 0.85rem;
    font-weight: 700;
}

.calendar-date-button[b-mq2vi8skep] {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: inherit;
    cursor: pointer;
    width: fit-content;
}

    .calendar-date-button:hover[b-mq2vi8skep] {
        opacity: 0.8;
    }

.calendar-items[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.calendar-item[b-mq2vi8skep] {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: 6px;
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
    line-height: 1.2;
    color: #111827;
    overflow: hidden;
    white-space: normal;
    background: color-mix( in srgb, var(--tenant-accent, #1b6ec2) 16%, white );
}

.calendar-more[b-mq2vi8skep] {
    font-size: 0.75rem;
    color: #6b7280;
    padding-top: 0.15rem;
}

.empty-state[b-mq2vi8skep] {
    color: #666;
}

.dashboard-desktop-layout[b-mq2vi8skep] {
    display: block;
}

.dashboard-mobile-layout[b-mq2vi8skep] {
    display: none;
}

.mobile-week-strip[b-mq2vi8skep] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.mobile-week-day[b-mq2vi8skep] {
    min-height: 82px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem 0.25rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    position: relative;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.mobile-week-day--today[b-mq2vi8skep] {
    border: 2px solid var(--tenant-accent, #2563eb);
}

.mobile-week-day--selected[b-mq2vi8skep] {
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
    background: #f0fdf4;
}

.mobile-week-day-name[b-mq2vi8skep] {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
}

.mobile-week-day-number[b-mq2vi8skep] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.mobile-week-dot[b-mq2vi8skep] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    margin-top: 0.15rem;
}

.mobile-day-groups[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-day-group[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-day-heading[b-mq2vi8skep] {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}

.mobile-day-events[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-event-card[b-mq2vi8skep] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
    background: #fafafa;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.mobile-event-card-main[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-event-title-row[b-mq2vi8skep] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.mobile-event-time[b-mq2vi8skep] {
    font-size: 0.95rem;
    color: #111827;
}

.mobile-event-meta[b-mq2vi8skep] {
    font-size: 0.85rem;
    color: #6b7280;
}

.selected-date-label[b-mq2vi8skep] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.who-is-on-panel[b-mq2vi8skep] {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.who-is-on-list[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.who-is-on-card[b-mq2vi8skep] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
    background: #fafafa;
    text-align: left;
    cursor: pointer;
    color: inherit;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

    .who-is-on-card:hover[b-mq2vi8skep] {
        background: #f3f4f6;
        border-color: #d1d5db;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }

.who-is-on-card-main[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.who-is-on-event[b-mq2vi8skep] {
    font-size: 0.95rem;
    color: #374151;
}

.who-is-on-name[b-mq2vi8skep] {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.who-is-on-role[b-mq2vi8skep] {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 0.78rem;
    font-weight: 600;
}

.who-is-on-subtitle[b-mq2vi8skep] {
    font-size: 0.9rem;
    color: #6b7280;
}

.who-is-on-time[b-mq2vi8skep] {
    font-size: 0.88rem;
    color: #6b7280;
}

@media (max-width: 1100px) {
    .dashboard-main-grid[b-mq2vi8skep] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-page[b-mq2vi8skep] {
        gap: 1rem;
    }

    .dashboard-install-banner[b-mq2vi8skep] {
        align-items: stretch;
        flex-direction: column;
    }

        .dashboard-install-banner .btn[b-mq2vi8skep] {
            width: 100%;
        }

    .dashboard-header[b-mq2vi8skep] {
        align-items: stretch;
    }

        .dashboard-header h1[b-mq2vi8skep] {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .dashboard-header p[b-mq2vi8skep],
        .dashboard-subtitle[b-mq2vi8skep] {
            font-size: 0.85rem;
            margin-top: 0.2rem;
        }

    .dashboard-actions[b-mq2vi8skep] {
        display: none;
    }

    .dashboard-panel[b-mq2vi8skep] {
        padding: 0.85rem;
    }

    .next-shift-title[b-mq2vi8skep] {
        font-size: 1.15rem;
    }

    .next-shift-time[b-mq2vi8skep] {
        font-size: 0.95rem;
    }

    .dashboard-desktop-layout[b-mq2vi8skep] {
        display: none;
    }

    .dashboard-mobile-layout[b-mq2vi8skep] {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .mobile-week-strip[b-mq2vi8skep] {
        gap: 0.35rem;
    }

    .mobile-week-day[b-mq2vi8skep] {
        min-height: 72px;
        padding: 0.45rem 0.2rem;
    }

    .mobile-week-day-number[b-mq2vi8skep] {
        font-size: 1rem;
    }

    .who-is-on-card[b-mq2vi8skep] {
        padding: 0.9rem;
    }
}

.notification-list[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-item[b-mq2vi8skep] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem;
    background: #fafafa;
}

.notification-header[b-mq2vi8skep] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.notification-date[b-mq2vi8skep] {
    font-size: 0.8rem;
    color: #6b7280;
    white-space: nowrap;
}

.notification-meta[b-mq2vi8skep] {
    font-size: 0.85rem;
    color: var(--tenant-accent, #2563eb);
    margin-top: 0.25rem;
}

.notification-body[b-mq2vi8skep] {
    margin-top: 0.5rem;
    white-space: pre-wrap;
    color: #111827;
}

.notification-footer[b-mq2vi8skep] {
    margin-top: 0.75rem;
}

.calendar-header-bar[b-mq2vi8skep] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.calendar-header-title[b-mq2vi8skep] {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}


@media (max-width: 640px) {
    .notification-header[b-mq2vi8skep] {
        flex-direction: column;
    }

    .notification-date[b-mq2vi8skep] {
        white-space: normal;
    }
}



/* -------------------------------------------------------------------------
   Mobile week swipe animations
   ------------------------------------------------------------------------- */

.mobile-week-range-label[b-mq2vi8skep] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-align: center;
}

.mobile-week-swipe-zone[b-mq2vi8skep] {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    border-radius: 12px;
}

/* Exit animations — old week leaves */
.mobile-week-strip--exit-left[b-mq2vi8skep] {
    animation: mobileWeekExitLeft-b-mq2vi8skep 160ms cubic-bezier(0.4, 0, 0.8, 1) forwards;
}

.mobile-week-strip--exit-right[b-mq2vi8skep] {
    animation: mobileWeekExitRight-b-mq2vi8skep 160ms cubic-bezier(0.4, 0, 0.8, 1) forwards;
}

/* Enter animations — new week arrives */
.mobile-week-strip--enter-right[b-mq2vi8skep] {
    animation: mobileWeekEnterRight-b-mq2vi8skep 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-week-strip--enter-left[b-mq2vi8skep] {
    animation: mobileWeekEnterLeft-b-mq2vi8skep 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes mobileWeekExitLeft-b-mq2vi8skep {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-52px);
    }
}

@keyframes mobileWeekExitRight-b-mq2vi8skep {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(52px);
    }
}

@keyframes mobileWeekEnterRight-b-mq2vi8skep {
    from {
        opacity: 0;
        transform: translateX(64px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mobileWeekEnterLeft-b-mq2vi8skep {
    from {
        opacity: 0;
        transform: translateX(-64px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* -------------------------------------------------------------------------
   Admin dashboard desktop polish / upcoming staffing cards
   ------------------------------------------------------------------------- */

.dashboard-desktop-only[b-mq2vi8skep] {
    display: block;
}

.dashboard-month-controls[b-mq2vi8skep] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.upcoming-event-item[b-mq2vi8skep] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: start;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

    .upcoming-event-item:hover[b-mq2vi8skep] {
        border-color: #d1d5db;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
        transform: translateY(-1px);
    }

.upcoming-event-toggle[b-mq2vi8skep] {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    text-align: left;
    color: inherit;
    min-width: 0;
    cursor: pointer;
}

.upcoming-event-actions[b-mq2vi8skep] {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.upcoming-event-details[b-mq2vi8skep] {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    animation: dashboardDetailsFadeIn-b-mq2vi8skep 180ms ease-out;
}

.upcoming-event-detail-row[b-mq2vi8skep] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    padding: 0.65rem 0.75rem;
}

.upcoming-event-detail-main[b-mq2vi8skep] {
    min-width: 0;
}

.upcoming-event-detail-title[b-mq2vi8skep] {
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

    .upcoming-event-detail-title span[b-mq2vi8skep] {
        margin-left: 0.35rem;
        color: #6b7280;
        font-weight: 500;
    }

.upcoming-event-detail-meta[b-mq2vi8skep] {
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: #6b7280;
}

.upcoming-request-indicator[b-mq2vi8skep] {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-left: 0.35rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 700;
}

.mobile-request-indicator[b-mq2vi8skep] {
    display: block;
    width: fit-content;
    margin-top: 0.35rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 700;
}

.status-pill--filled[b-mq2vi8skep] {
    background: #dcfce7;
    color: #166534;
}

.status-pill--partial[b-mq2vi8skep] {
    background: #fef3c7;
    color: #92400e;
}

.status-pill--open[b-mq2vi8skep] {
    background: #fee2e2;
    color: #991b1b;
}

.calendar-item[b-mq2vi8skep],
.calendar-item-button[b-mq2vi8skep] {
    min-width: 0;
    max-width: 100%;
}

.calendar-item-event-name[b-mq2vi8skep] {
    display: -webkit-box;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

@keyframes dashboardDetailsFadeIn-b-mq2vi8skep {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .dashboard-desktop-only[b-mq2vi8skep] {
        display: none !important;
    }

    .upcoming-event-item[b-mq2vi8skep] {
        grid-template-columns: 1fr;
    }

    .upcoming-event-actions[b-mq2vi8skep] {
        justify-content: flex-start;
    }
}


/* -------------------------------------------------------------------------
   One-time trial setup notice
   ------------------------------------------------------------------------- */

.trial-setup-backdrop[b-mq2vi8skep] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(3px);
    overflow-y: auto;
}

.trial-setup-modal[b-mq2vi8skep] {
    width: min(680px, 100%);
    max-height: calc(100vh - 2.5rem);
    overflow-y: auto;
    border: 1px solid #dbe3ee;
    border-radius: 22px;
    background: #ffffff;
    padding: 1.75rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.trial-setup-icon[b-mq2vi8skep] {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-size: 1.65rem;
    font-weight: 800;
}

.trial-setup-modal h2[b-mq2vi8skep] {
    margin: 0;
    text-align: center;
    color: #0f172a;
    font-size: 1.65rem;
}

.trial-setup-intro[b-mq2vi8skep] {
    max-width: 560px;
    margin: 0.65rem auto 1.35rem;
    text-align: center;
    color: #64748b;
}

.trial-setup-feature-list[b-mq2vi8skep] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.trial-setup-feature[b-mq2vi8skep] {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    padding: 0.85rem;
}

.trial-setup-feature-check[b-mq2vi8skep] {
    width: 1.55rem;
    height: 1.55rem;
    min-width: 1.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.85rem;
    font-weight: 800;
}

.trial-setup-feature strong[b-mq2vi8skep] {
    display: block;
    margin-bottom: 0.15rem;
    color: #0f172a;
}

.trial-setup-feature p[b-mq2vi8skep] {
    margin: 0;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.4;
}

.trial-setup-original-workflow[b-mq2vi8skep] {
    margin-top: 1rem;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
    padding: 1rem;
}

    .trial-setup-original-workflow strong[b-mq2vi8skep] {
        color: #1e3a8a;
    }

    .trial-setup-original-workflow p[b-mq2vi8skep] {
        margin: 0.35rem 0 0;
        color: #334155;
        line-height: 1.5;
    }

.trial-setup-settings-note[b-mq2vi8skep] {
    margin: 1rem 0 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.trial-setup-actions[b-mq2vi8skep] {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

@media (max-width: 640px) {
    .trial-setup-backdrop[b-mq2vi8skep] {
        align-items: flex-start;
        padding: 0.75rem;
    }

    .trial-setup-modal[b-mq2vi8skep] {
        max-height: none;
        border-radius: 16px;
        padding: 1.1rem;
    }

        .trial-setup-modal h2[b-mq2vi8skep] {
            font-size: 1.35rem;
        }

    .trial-setup-feature-list[b-mq2vi8skep] {
        grid-template-columns: 1fr;
    }

    .trial-setup-actions[b-mq2vi8skep] {
        flex-direction: column-reverse;
    }

        .trial-setup-actions .btn[b-mq2vi8skep] {
            width: 100%;
        }
}


/* -------------------------------------------------------------------------
   Dashboard reliability and empty states
   ------------------------------------------------------------------------- */

.dashboard-error-state[b-mq2vi8skep],
.dashboard-inline-error[b-mq2vi8skep] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-empty-state[b-mq2vi8skep] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 1rem;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
}

    .dashboard-empty-state strong[b-mq2vi8skep] {
        color: #0f172a;
    }

    .dashboard-empty-state p[b-mq2vi8skep] {
        margin: 0;
    }

.dashboard-inline-error[b-mq2vi8skep] {
    padding: 0.75rem;
    border: 1px solid #fecaca;
    border-radius: 10px;
    background: #fef2f2;
    color: #991b1b;
}

@media (max-width: 640px) {
    .dashboard-error-state[b-mq2vi8skep],
    .dashboard-inline-error[b-mq2vi8skep] {
        align-items: stretch;
        flex-direction: column;
    }

        .dashboard-error-state .btn[b-mq2vi8skep],
        .dashboard-inline-error .btn[b-mq2vi8skep] {
            width: 100%;
        }
}
/* /Components/Pages/AdminTimeClock.razor.rz.scp.css */
.admin-time-clock-page[b-u55i3s2nzx] {
    max-width: 1180px;
}

.admin-time-clock-header[b-u55i3s2nzx] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.admin-time-clock-error[b-u55i3s2nzx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-time-clock-header h1[b-u55i3s2nzx] {
    margin: 0;
}

.admin-time-clock-header p[b-u55i3s2nzx] {
    margin: 0.35rem 0 0;
    color: #64748b;
}

.admin-time-clock-header-actions[b-u55i3s2nzx] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-time-clock-loading[b-u55i3s2nzx],
.admin-time-clock-empty[b-u55i3s2nzx] {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

    .admin-time-clock-empty h2[b-u55i3s2nzx] {
        margin: 0;
        font-size: 1.35rem;
    }

    .admin-time-clock-empty p[b-u55i3s2nzx] {
        max-width: 560px;
        margin: 0;
        color: #64748b;
    }

.admin-time-clock-empty-icon[b-u55i3s2nzx] {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 2rem;
    font-weight: 800;
}

.admin-time-clock-summary[b-u55i3s2nzx] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-time-clock-summary--four[b-u55i3s2nzx] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-time-clock-summary-card[b-u55i3s2nzx] {
    min-height: 130px;
    padding: 1.15rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.admin-time-clock-summary-label[b-u55i3s2nzx] {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.admin-time-clock-summary-value[b-u55i3s2nzx] {
    margin-top: 0.35rem;
    color: #0f172a;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.admin-time-clock-summary-time[b-u55i3s2nzx] {
    margin-top: 0.45rem;
    color: #0f172a;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1.1;
}

.admin-time-clock-summary-text[b-u55i3s2nzx] {
    margin-top: 0.45rem;
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 800;
}

.admin-time-clock-summary-date[b-u55i3s2nzx] {
    margin-top: 0.35rem;
    color: #64748b;
    font-size: 0.9rem;
}

.admin-time-clock-list[b-u55i3s2nzx] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-time-clock-entry[b-u55i3s2nzx] {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(420px, 1.65fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.15rem;
    border: 1px solid #dfe7f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.admin-time-clock-entry--general[b-u55i3s2nzx] {
    border-color: #facc15;
    background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.admin-time-clock-entry-main[b-u55i3s2nzx] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.admin-time-clock-avatar[b-u55i3s2nzx] {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e3a8a;
    font-weight: 900;
}

.admin-time-clock-entry-copy[b-u55i3s2nzx] {
    min-width: 0;
}

.admin-time-clock-name[b-u55i3s2nzx] {
    color: #0f172a;
    font-size: 1.12rem;
    font-weight: 900;
}

.admin-time-clock-event[b-u55i3s2nzx] {
    margin-top: 0.15rem;
    color: #1d4ed8;
    font-weight: 700;
}

.admin-time-clock-shift[b-u55i3s2nzx] {
    margin-top: 0.15rem;
    color: #64748b;
    font-size: 0.92rem;
}

.admin-time-clock-entry-badges[b-u55i3s2nzx] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.55rem;
}

.admin-time-clock-general-badge[b-u55i3s2nzx],
.admin-time-clock-approval-badge[b-u55i3s2nzx] {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.65rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
}

.admin-time-clock-general-badge[b-u55i3s2nzx] {
    background: #dbeafe;
    color: #1e40af;
}

.admin-time-clock-approval-badge--pending[b-u55i3s2nzx] {
    background: #fef3c7;
    color: #92400e;
}

.admin-time-clock-approval-badge--approved[b-u55i3s2nzx] {
    background: #dcfce7;
    color: #166534;
}

.admin-time-clock-approval-badge--rejected[b-u55i3s2nzx] {
    background: #fee2e2;
    color: #991b1b;
}

.admin-time-clock-entry-details[b-u55i3s2nzx] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.admin-time-clock-detail[b-u55i3s2nzx] {
    min-width: 0;
}

.admin-time-clock-detail-label[b-u55i3s2nzx] {
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-time-clock-detail-value[b-u55i3s2nzx] {
    margin-top: 0.25rem;
    color: #1e293b;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.admin-time-clock-elapsed[b-u55i3s2nzx] {
    margin-top: 0.2rem;
    color: #166534;
    font-size: 1.12rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.admin-time-clock-entry-note[b-u55i3s2nzx] {
    grid-column: 1 / -1;
    padding: 0.9rem 1rem;
    border: 1px solid #fde68a;
    border-radius: 14px;
    background: rgba(255, 251, 235, 0.9);
}

.admin-time-clock-entry-note-text[b-u55i3s2nzx] {
    margin-top: 0.25rem;
    color: #78350f;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.admin-time-clock-entry-action[b-u55i3s2nzx] {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

/* Keeps the edit-time buttons visible while using the date/time picker. */
.admin-time-clock-edit-dialog[b-u55i3s2nzx] {
    max-height: calc(100dvh - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.admin-time-clock-edit-modal[b-u55i3s2nzx] {
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - 2rem);
    overflow: hidden;
}

.admin-time-clock-edit-modal-body[b-u55i3s2nzx] {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 5.5rem;
}

.admin-time-clock-edit-modal-footer[b-u55i3s2nzx] {
    position: sticky;
    bottom: 0;
    z-index: 20;
    flex: 0 0 auto;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.10);
}

@media (max-width: 980px) {
    .admin-time-clock-summary--four[b-u55i3s2nzx] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-time-clock-entry[b-u55i3s2nzx] {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .admin-time-clock-entry-action[b-u55i3s2nzx] {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .admin-time-clock-summary[b-u55i3s2nzx],
    .admin-time-clock-summary--four[b-u55i3s2nzx] {
        grid-template-columns: 1fr;
    }

    .admin-time-clock-entry-details[b-u55i3s2nzx] {
        grid-template-columns: 1fr;
    }

    .admin-time-clock-edit-dialog[b-u55i3s2nzx] {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .admin-time-clock-error[b-u55i3s2nzx] {
        align-items: stretch;
        flex-direction: column;
    }

        .admin-time-clock-error .btn[b-u55i3s2nzx],
        .admin-time-clock-header-actions[b-u55i3s2nzx],
        .admin-time-clock-header-actions .btn[b-u55i3s2nzx],
        .admin-time-clock-entry-action[b-u55i3s2nzx],
        .admin-time-clock-entry-action .btn[b-u55i3s2nzx] {
            width: 100%;
        }

    .admin-time-clock-edit-dialog[b-u55i3s2nzx] {
        margin: 0.5rem;
        max-height: calc(100dvh - 1rem);
    }

    .admin-time-clock-edit-modal[b-u55i3s2nzx] {
        max-height: calc(100dvh - 1rem);
    }

    .admin-time-clock-edit-modal-body[b-u55i3s2nzx] {
        padding-bottom: 6.5rem;
    }

    .admin-time-clock-edit-modal-footer[b-u55i3s2nzx] {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0.6rem;
    }

        .admin-time-clock-edit-modal-footer .btn[b-u55i3s2nzx] {
            width: 100%;
            margin: 0;
        }
}
/* /Components/Pages/Calendar.razor.rz.scp.css */
.crew-calendar-page[b-vfsegaj1yt] {
    padding: 1.5rem;
}

.crew-calendar-header[b-vfsegaj1yt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .crew-calendar-header h1[b-vfsegaj1yt] {
        margin: 0;
        font-size: 2rem;
    }

    .crew-calendar-header p[b-vfsegaj1yt] {
        margin: 0;
        color: #6c757d;
    }

.crew-calendar-day-header[b-vfsegaj1yt],
.crew-calendar-grid[b-vfsegaj1yt] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.crew-calendar-day-header[b-vfsegaj1yt] {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #6c757d;
    text-align: center;
}

.crew-calendar-cell[b-vfsegaj1yt] {
    min-height: 120px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}

.crew-calendar-cell--muted[b-vfsegaj1yt] {
    opacity: 0.45;
    background: #f8f9fa;
}

.crew-calendar-cell--today[b-vfsegaj1yt] {
    border-color: var(--tenant-accent, #3b82f6);
    box-shadow: 0 0 0 2px color-mix( in srgb, var(--tenant-accent, #3b82f6) 18%, transparent );
}

.crew-calendar-date[b-vfsegaj1yt] {
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.crew-calendar-items[b-vfsegaj1yt] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.crew-calendar-item[b-vfsegaj1yt] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    background: var(--tenant-accent, #4086f4);
    color: white;
    border-radius: 0.45rem;
    padding: 0.35rem 0.45rem;
    font-size: 0.75rem;
    line-height: 1.15;
    min-height: 34px;
    overflow: hidden;
}

    .crew-calendar-item:hover[b-vfsegaj1yt] {
        color: white;
        filter: brightness(0.95);
    }

    .crew-calendar-item span[b-vfsegaj1yt] {
        display: block;
        font-size: 0.68rem;
        opacity: 0.9;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .crew-calendar-item strong[b-vfsegaj1yt] {
        display: block;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.crew-calendar-more[b-vfsegaj1yt] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--tenant-accent, #4086f4);
    line-height: 1;
    margin-top: 2px;
}

.crew-calendar-empty[b-vfsegaj1yt] {
    margin-top: 1.5rem;
    text-align: center;
}




@media (max-width: 700px) {
    .crew-calendar-page[b-vfsegaj1yt] {
        padding: 0.75rem;
    }

    .crew-calendar-header button[b-vfsegaj1yt] {
        display: none;
    }

    .crew-calendar-header[b-vfsegaj1yt] {
        display: block;
        margin-bottom: 1rem;
        text-align: left;
    }

    .crew-calendar-heading[b-vfsegaj1yt] {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }

    .crew-calendar-header h1[b-vfsegaj1yt] {
        margin: 0;
        font-size: 1.65rem;
        line-height: 1.05;
        white-space: nowrap;
    }

    .crew-calendar-header p[b-vfsegaj1yt] {
        margin: 0 0 0.1rem;
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.2;
        text-align: right;
        white-space: nowrap;
    }

    .crew-calendar-day-header[b-vfsegaj1yt],
    .crew-calendar-grid[b-vfsegaj1yt] {
        gap: 0.3rem;
    }

    .crew-calendar-cell[b-vfsegaj1yt] {
        min-height: 92px;
        padding: 0.35rem 0.28rem;
        border-radius: 0.6rem;
    }

        .crew-calendar-cell:active[b-vfsegaj1yt] {
            transform: scale(0.98);
        }

    .crew-calendar-date[b-vfsegaj1yt] {
        font-size: 0.78rem;
        margin-bottom: 0.35rem;
        text-align: left;
        padding-left: 0.15rem;
    }

    .crew-calendar-items[b-vfsegaj1yt] {
        gap: 5px;
    }

    .crew-calendar-item[b-vfsegaj1yt] {
        display: block;
        background: var(--tenant-accent, #4086f4);
        color: white;
        border-radius: 0.45rem;
        padding: 0.25rem 0.4rem;
        font-size: 0.75rem;
        line-height: 1.15;
        transition: transform 0.08s ease, box-shadow 0.08s ease;
    }

        .crew-calendar-item span[b-vfsegaj1yt],
        .crew-calendar-item strong[b-vfsegaj1yt] {
            display: none;
        }

    .crew-calendar-more[b-vfsegaj1yt] {
        font-size: 0.65rem;
        text-align: center;
        margin-top: 2px;
    }
}


.crew-calendar-month[b-vfsegaj1yt] {
    transition: opacity 180ms ease, transform 180ms ease;
}

.crew-calendar-month--exit-left[b-vfsegaj1yt] {
    opacity: 0;
    transform: translateX(-18px);
}

.crew-calendar-month--exit-right[b-vfsegaj1yt] {
    opacity: 0;
    transform: translateX(18px);
}

.crew-calendar-month--enter-right[b-vfsegaj1yt] {
    animation: calendarEnterRight-b-vfsegaj1yt 180ms ease;
}

.crew-calendar-month--enter-left[b-vfsegaj1yt] {
    animation: calendarEnterLeft-b-vfsegaj1yt 180ms ease;
}

@keyframes calendarEnterRight-b-vfsegaj1yt {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes calendarEnterLeft-b-vfsegaj1yt {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.crew-calendar-item-time[b-vfsegaj1yt],
.crew-calendar-item-title[b-vfsegaj1yt] {
    display: block;
    color: #ffffff;
    visibility: visible;
    opacity: 1;
}

.crew-calendar-item-title[b-vfsegaj1yt] {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crew-calendar-item-time[b-vfsegaj1yt] {
    font-size: 0.68rem;
}
/* /Components/Pages/ClockKiosk.razor.rz.scp.css */


.clock-kiosk-page[b-5efzjn1pz3] {
    min-height: 100vh;
    padding: 2rem 1rem;
    background: radial-gradient( circle at 18% 10%, color-mix(in srgb, var(--kiosk-accent) 24%, white), transparent 38% ), linear-gradient( 145deg, var(--kiosk-primary) 0%, color-mix(in srgb, var(--kiosk-primary) 80%, black) 100% );
}

.clock-kiosk-shell[b-5efzjn1pz3] {
    width: min(900px, 100%);
    margin: 0 auto;
}

.clock-kiosk-card[b-5efzjn1pz3] {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.clock-kiosk-card--plush[b-5efzjn1pz3] {
    padding: 2.2rem;
}

.clock-kiosk-watermark[b-5efzjn1pz3] {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 290px;
    opacity: 0.06;
    pointer-events: none;
    transform: rotate(-8deg);
}

    .clock-kiosk-watermark img[b-5efzjn1pz3] {
        width: 100%;
        height: auto;
        display: block;
    }

.clock-kiosk-header[b-5efzjn1pz3] {
    position: relative;
    z-index: 1;
    margin-bottom: 1.75rem;
}

.clock-kiosk-header-top[b-5efzjn1pz3] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.clock-kiosk-eyebrow[b-5efzjn1pz3] {
    color: var(--kiosk-accent);
}

.clock-kiosk-brand[b-5efzjn1pz3] {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.05;
    color: #0f172a;
}

.clock-kiosk-subtitle[b-5efzjn1pz3] {
    margin-top: 0.4rem;
    color: #475569;
    font-weight: 600;
}

.clock-kiosk-datetime[b-5efzjn1pz3] {
    min-width: 220px;
    text-align: right;
    padding: 0.95rem 1.1rem;
    border: 1px solid #dbe4ef;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.clock-kiosk-date[b-5efzjn1pz3] {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.clock-kiosk-time[b-5efzjn1pz3] {
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
}

.clock-kiosk-main[b-5efzjn1pz3] {
    position: relative;
    z-index: 1;
}

.clock-kiosk-intro[b-5efzjn1pz3] {
    text-align: center;
    margin-bottom: 1rem;
}

    .clock-kiosk-intro h1[b-5efzjn1pz3],
    .clock-kiosk-success h1[b-5efzjn1pz3],
    .clock-kiosk-open-entry h2[b-5efzjn1pz3],
    .clock-kiosk-empty h2[b-5efzjn1pz3] {
        color: #0f172a;
        font-weight: 800;
    }

.clock-kiosk-pin-display[b-5efzjn1pz3] {
    width: min(360px, 100%);
    margin: 1.5rem auto;
    padding: 1rem 1.2rem;
    border: 2px solid #d8e1ec;
    border-radius: 18px;
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 0.7rem;
    color: #0f172a;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}

.clock-kiosk-alert[b-5efzjn1pz3] {
    max-width: 520px;
    margin: 0 auto 1.25rem auto;
}

.clock-kiosk-keypad[b-5efzjn1pz3] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
}

.clock-kiosk-key[b-5efzjn1pz3] {
    min-height: 82px;
    border: 1px solid #cfd8e3;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    color: #0f172a;
    font-size: 1.7rem;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
    transition: transform 0.08s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

    .clock-kiosk-key:hover[b-5efzjn1pz3] {
        background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
        border-color: #94a3b8;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    }

    .clock-kiosk-key:active[b-5efzjn1pz3] {
        transform: translateY(1px);
    }

    .clock-kiosk-key:disabled[b-5efzjn1pz3] {
        opacity: 0.55;
    }

.clock-kiosk-key--secondary[b-5efzjn1pz3] {
    font-size: 1rem;
    color: #475569;
}

.clock-kiosk-key--primary[b-5efzjn1pz3] {
    color: #ffffff;
    background: var(--kiosk-accent);
    border-color: var(--kiosk-accent);
}

    .clock-kiosk-key--primary:hover[b-5efzjn1pz3] {
        background: color-mix( in srgb, var(--kiosk-accent) 84%, black );
        border-color: color-mix( in srgb, var(--kiosk-accent) 84%, black );
    }

.clock-kiosk-person[b-5efzjn1pz3] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5edf6;
}

.clock-kiosk-person-label[b-5efzjn1pz3] {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.clock-kiosk-person-name[b-5efzjn1pz3] {
    font-size: 1.7rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.clock-kiosk-not-you[b-5efzjn1pz3] {
    color: var(--kiosk-accent);
    text-decoration: none;
    font-weight: 700;
}

.clock-kiosk-open-entry[b-5efzjn1pz3],
.clock-kiosk-empty[b-5efzjn1pz3] {
    text-align: center;
    padding: 1rem 0;
}

.clock-kiosk-status-label[b-5efzjn1pz3] {
    display: inline-flex;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-weight: 800;
    margin-bottom: 1rem;
}

.clock-kiosk-open-shift[b-5efzjn1pz3] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
}

.clock-kiosk-shift-list[b-5efzjn1pz3] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.clock-kiosk-shift[b-5efzjn1pz3] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    border: 1px solid #d9e3ee;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
    transition: border-color 0.12s ease, background 0.12s ease, transform 0.08s ease;
}

    .clock-kiosk-shift:hover[b-5efzjn1pz3] {
        border-color: var(--kiosk-accent);
        background: color-mix( in srgb, var(--kiosk-accent) 8%, white );
    }

    .clock-kiosk-shift:active[b-5efzjn1pz3] {
        transform: translateY(1px);
    }

.clock-kiosk-shift-main[b-5efzjn1pz3] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.clock-kiosk-shift-time[b-5efzjn1pz3] {
    text-align: right;
    color: #475569;
    font-weight: 700;
    flex-shrink: 0;
}

.clock-kiosk-success[b-5efzjn1pz3] {
    text-align: center;
    padding: 2rem 0;
}

.clock-kiosk-success-icon[b-5efzjn1pz3] {
    width: 88px;
    height: 88px;
    margin: 0 auto 1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #166534;
    font-size: 2.7rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(22, 101, 52, 0.12);
}

@media (max-width: 768px) {
    .clock-kiosk-header-top[b-5efzjn1pz3] {
        flex-direction: column;
        align-items: stretch;
    }

    .clock-kiosk-datetime[b-5efzjn1pz3] {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .clock-kiosk-page[b-5efzjn1pz3] {
        padding: 1rem 0.75rem;
    }

    .clock-kiosk-card[b-5efzjn1pz3] {
        border: 1px solid color-mix( in srgb, var(--kiosk-primary) 18%, white );
    }

    .clock-kiosk-brand[b-5efzjn1pz3] {
        font-size: 1.8rem;
    }

    .clock-kiosk-time[b-5efzjn1pz3] {
        font-size: 1.45rem;
    }

    .clock-kiosk-key[b-5efzjn1pz3] {
        min-height: 70px;
        font-size: 1.45rem;
    }

    .clock-kiosk-shift[b-5efzjn1pz3] {
        flex-direction: column;
        align-items: flex-start;
    }

    .clock-kiosk-shift-time[b-5efzjn1pz3] {
        text-align: left;
    }

    .clock-kiosk-watermark[b-5efzjn1pz3] {
        width: 220px;
        right: -50px;
        bottom: -10px;
    }
}
.clock-kiosk-brand-block[b-5efzjn1pz3] {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.clock-kiosk-logo-wrap[b-5efzjn1pz3] {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #dbe4ef;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.clock-kiosk-tenant-logo[b-5efzjn1pz3],
.clock-kiosk-default-logo[b-5efzjn1pz3] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.clock-kiosk-watermark img[b-5efzjn1pz3] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 576px) {
    .clock-kiosk-brand-block[b-5efzjn1pz3] {
        align-items: flex-start;
    }

    .clock-kiosk-logo-wrap[b-5efzjn1pz3] {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        border-radius: 18px;
    }
}


.clock-kiosk-general-info[b-5efzjn1pz3] {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    background: #eff6ff;
    color: #1e3a8a;
    font-weight: 700;
}

.clock-kiosk-general-form[b-5efzjn1pz3] {
    max-width: 620px;
    margin: 1.25rem auto 0;
    text-align: left;
}

    .clock-kiosk-general-form textarea[b-5efzjn1pz3] {
        min-height: 130px;
        resize: vertical;
        border-radius: 16px;
        padding: 0.9rem 1rem;
    }

.clock-kiosk-general-warning[b-5efzjn1pz3] {
    max-width: 620px;
    margin: 1rem auto 0;
    padding: 0.85rem 1rem;
    border: 1px solid #fde68a;
    border-radius: 14px;
    background: #fffbeb;
    color: #92400e;
    font-weight: 700;
}

.clock-kiosk-general-actions[b-5efzjn1pz3] {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.clock-kiosk-pending-badge[b-5efzjn1pz3] {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-weight: 800;
}

.clock-kiosk-open-note[b-5efzjn1pz3] {
    max-width: 620px;
    margin: 1rem auto 0;
    padding: 1rem;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    text-align: left;
    white-space: pre-wrap;
}

@media (max-width: 576px) {
    .clock-kiosk-general-actions[b-5efzjn1pz3] {
        flex-direction: column;
    }

        .clock-kiosk-general-actions .btn[b-5efzjn1pz3] {
            width: 100%;
        }
}
/* /Components/Pages/CompanySettings.razor.rz.scp.css */
.settings-help-button[b-spucoy8qc2] {
    width: 1.6rem;
    height: 1.6rem;
    min-width: 1.6rem;
    min-height: 1.6rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #94a3b8;
    border-radius: 50%;
    background: #f8fafc;
    color: #475569;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
}

    .settings-help-button:hover[b-spucoy8qc2],
    .settings-help-button:focus-visible[b-spucoy8qc2] {
        background: #eff6ff;
        border-color: #2563eb;
        color: #1d4ed8;
        outline: none;
    }

.settings-help-backdrop[b-spucoy8qc2] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(2px);
}

.settings-help-modal[b-spucoy8qc2] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.settings-help-card[b-spucoy8qc2] {
    width: 100%;
    max-width: 620px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.3), 0 4px 16px rgba(15, 23, 42, 0.12);
}

.settings-help-header[b-spucoy8qc2] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .settings-help-header h5[b-spucoy8qc2] {
        margin: 0;
        color: #0f172a;
        font-size: 1.25rem;
        font-weight: 700;
    }

.settings-help-content[b-spucoy8qc2] {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.55;
}

    .settings-help-content p[b-spucoy8qc2] {
        margin-bottom: 1rem;
    }

    .settings-help-content h6[b-spucoy8qc2] {
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
        color: #0f172a;
        font-size: 1rem;
        font-weight: 700;
    }

    .settings-help-content ul[b-spucoy8qc2] {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 1.25rem;
    }

    .settings-help-content li[b-spucoy8qc2] {
        margin-bottom: 0.45rem;
    }

        .settings-help-content li:last-child[b-spucoy8qc2] {
            margin-bottom: 0;
        }

.gps-setting-disabled[b-spucoy8qc2] {
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

    .gps-setting-disabled .form-check-input[b-spucoy8qc2] {
        opacity: 0.55;
    }

    .gps-setting-disabled .form-check-label[b-spucoy8qc2] {
        color: #475569;
    }

@media (max-width: 576px) {
    .company-help-dialog[b-spucoy8qc2] {
        align-items: flex-end;
        padding: 0.75rem;
    }

    .company-help-card[b-spucoy8qc2] {
        width: 100%;
        max-height: calc(100vh - 1.5rem);
        border-radius: 16px;
    }

        .company-help-card .settings-help-header[b-spucoy8qc2] {
            padding: 1rem 1rem 0.85rem;
        }

        .company-help-card .settings-help-content[b-spucoy8qc2] {
            padding: 1rem;
        }

        .company-help-card > .d-flex.justify-content-end[b-spucoy8qc2] {
            padding: 0.85rem 1rem 1rem;
        }

    .settings-help-header h5[b-spucoy8qc2] {
        font-size: 1.1rem;
    }

    .settings-help-content[b-spucoy8qc2] {
        font-size: 0.9rem;
    }

    .card-title[b-spucoy8qc2] {
        line-height: 1.2;
    }

    .settings-help-button[b-spucoy8qc2] {
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
        min-height: 1.5rem;
        font-size: 0.82rem;
    }
}

.company-help-backdrop[b-spucoy8qc2] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(2px);
}

.company-help-dialog[b-spucoy8qc2] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.company-help-card[b-spucoy8qc2] {
    display: flex;
    flex-direction: column;
    width: min(620px, 100%);
    max-height: calc(100vh - 2rem);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.3), 0 4px 16px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

    .company-help-card .settings-help-header[b-spucoy8qc2] {
        flex: 0 0 auto;
        padding: 1.35rem 1.35rem 1rem;
        margin-bottom: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .company-help-card .settings-help-content[b-spucoy8qc2] {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding: 1.25rem 1.35rem;
    }

    .company-help-card > .d-flex.justify-content-end[b-spucoy8qc2] {
        flex: 0 0 auto;
        margin-top: 0 !important;
        padding: 1rem 1.35rem 1.35rem;
        border-top: 1px solid #e2e8f0;
    }
/* /Components/Pages/CreateEvent.razor.rz.scp.css */
.settings-help-modal[b-1hio4vjd12] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-1hio4vjd12] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-1hio4vjd12] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-1hio4vjd12] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-1hio4vjd12] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-1hio4vjd12] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-1hio4vjd12] {
        color: #475569;
    }

.settings-help-example[b-1hio4vjd12] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-1hio4vjd12] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-1hio4vjd12],
    .settings-help-modal-body[b-1hio4vjd12],
    .settings-help-modal-footer[b-1hio4vjd12] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-1hio4vjd12] {
            width: 100%;
        }
}
/* /Components/Pages/CrewDashboard.razor.rz.scp.css */
.dashboard-page[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-header[b-txzxyo936o] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-header-copy[b-txzxyo936o] {
    min-width: 0;
}

.dashboard-header h1[b-txzxyo936o] {
    margin: 0;
    font-size: 2rem;
}

.dashboard-header p[b-txzxyo936o],
.dashboard-subtitle[b-txzxyo936o] {
    margin: 0.25rem 0 0;
    color: #666;
}

.dashboard-actions[b-txzxyo936o] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dashboard-error-state[b-txzxyo936o] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.status-pill--requested[b-txzxyo936o] {
    background: #e0f2fe;
    color: #075985;
}

.dashboard-install-banner[b-txzxyo936o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--tenant-accent, #bfdbfe);
    background: color-mix( in srgb, var(--tenant-accent, #1b6ec2) 8%, white );
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

    .dashboard-install-banner strong[b-txzxyo936o] {
        display: block;
        color: var(--tenant-accent, #1e3a8a);
        margin-bottom: 0.15rem;
    }

    .dashboard-install-banner p[b-txzxyo936o] {
        margin: 0;
        color: #475569;
        font-size: 0.92rem;
    }


.dashboard-main-grid[b-txzxyo936o] {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 1rem;
    align-items: start;
}

.dashboard-panel[b-txzxyo936o] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.panel-header[b-txzxyo936o] {
    margin-bottom: 1rem;
}

    .panel-header h3[b-txzxyo936o] {
        margin: 0;
        font-size: 1.1rem;
    }

.next-shift-panel[b-txzxyo936o] {
    background: #f8fafc;
}

.next-shift-card[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.next-shift-title[b-txzxyo936o] {
    font-size: 1.3rem;
    font-weight: 700;
}

.next-shift-position[b-txzxyo936o] {
    font-size: 1rem;
    font-weight: 600;
}

.next-shift-subtitle[b-txzxyo936o],
.next-shift-location[b-txzxyo936o] {
    color: #6b7280;
}

.next-shift-time[b-txzxyo936o] {
    color: #111827;
    font-weight: 500;
}

.upcoming-list[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upcoming-item[b-txzxyo936o] {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem;
    background: #fafafa;
}

.upcoming-item-top[b-txzxyo936o] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.35rem;
}

.upcoming-item-title[b-txzxyo936o] {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

    .upcoming-item-title span[b-txzxyo936o] {
        margin-left: 0.35rem;
        color: #666;
    }

.upcoming-item-meta[b-txzxyo936o] {
    font-size: 0.85rem;
    color: #6b7280;
}

.status-pill[b-txzxyo936o] {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pill--confirmed[b-txzxyo936o] {
    background: #dcfce7;
    color: #166534;
}

.status-pill--assigned[b-txzxyo936o] {
    background: color-mix( in srgb, var(--tenant-accent, #1d4ed8) 14%, white );
    color: var(--tenant-accent, #1d4ed8);
}

.status-pill--pending[b-txzxyo936o] {
    background: #fef3c7;
    color: #92400e;
}

.status-pill--default[b-txzxyo936o] {
    background: #e5e7eb;
    color: #374151;
}

.calendar-header-row[b-txzxyo936o] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-day-name[b-txzxyo936o] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.calendar-grid[b-txzxyo936o] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.calendar-cell[b-txzxyo936o] {
    min-width: 0;
    min-height: 130px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.calendar-cell--muted[b-txzxyo936o] {
    background: #f9fafb;
    color: #9ca3af;
}

.calendar-cell--today[b-txzxyo936o] {
    border: 2px solid var(--tenant-accent, #2563eb);
}

.calendar-cell--selected[b-txzxyo936o] {
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
    background: #f0fdf4;
}

.calendar-date[b-txzxyo936o] {
    font-size: 0.85rem;
    font-weight: 700;
}

.calendar-date-button[b-txzxyo936o] {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: inherit;
    cursor: pointer;
    width: fit-content;
}

    .calendar-date-button:hover[b-txzxyo936o] {
        opacity: 0.8;
    }

.calendar-items[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.calendar-item[b-txzxyo936o] {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: 6px;
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
    line-height: 1.2;
    color: #111827;
    overflow: hidden;
    white-space: normal;
    background: color-mix( in srgb, var(--tenant-accent, #1b6ec2) 16%, white );
}

.calendar-more[b-txzxyo936o] {
    font-size: 0.75rem;
    color: #6b7280;
    padding-top: 0.15rem;
}

.empty-state[b-txzxyo936o] {
    color: #666;
}

.dashboard-desktop-layout[b-txzxyo936o] {
    display: block;
}

.dashboard-mobile-layout[b-txzxyo936o] {
    display: none;
}

.mobile-week-strip[b-txzxyo936o] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.mobile-week-day[b-txzxyo936o] {
    min-height: 82px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem 0.25rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    position: relative;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.mobile-week-day--today[b-txzxyo936o] {
    border: 2px solid var(--tenant-accent, #2563eb);
}

.mobile-week-day--selected[b-txzxyo936o] {
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
    background: #f0fdf4;
}

.mobile-week-day-name[b-txzxyo936o] {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
}

.mobile-week-day-number[b-txzxyo936o] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.mobile-week-dot[b-txzxyo936o] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    margin-top: 0.15rem;
}

.mobile-day-groups[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-day-group[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-day-heading[b-txzxyo936o] {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}

.mobile-day-events[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-event-card[b-txzxyo936o] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
    background: #fafafa;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.mobile-event-card-main[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-event-title-row[b-txzxyo936o] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.mobile-event-time[b-txzxyo936o] {
    font-size: 0.95rem;
    color: #111827;
}

.mobile-event-meta[b-txzxyo936o] {
    font-size: 0.85rem;
    color: #6b7280;
}

.selected-date-label[b-txzxyo936o] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.who-is-on-panel[b-txzxyo936o] {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.who-is-on-list[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.who-is-on-card[b-txzxyo936o] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
    background: #fafafa;
    text-align: left;
    cursor: pointer;
    color: inherit;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

    .who-is-on-card:hover[b-txzxyo936o] {
        background: #f3f4f6;
        border-color: #d1d5db;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }

.who-is-on-card-main[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.who-is-on-event[b-txzxyo936o] {
    font-size: 0.95rem;
    color: #374151;
}

.who-is-on-name[b-txzxyo936o] {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.who-is-on-role[b-txzxyo936o] {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 0.78rem;
    font-weight: 600;
}

.who-is-on-subtitle[b-txzxyo936o] {
    font-size: 0.9rem;
    color: #6b7280;
}

.who-is-on-time[b-txzxyo936o] {
    font-size: 0.88rem;
    color: #6b7280;
}

@media (max-width: 1100px) {
    .dashboard-main-grid[b-txzxyo936o] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-page[b-txzxyo936o] {
        gap: 1rem;
    }

    .dashboard-install-banner[b-txzxyo936o] {
        align-items: stretch;
        flex-direction: column;
    }

        .dashboard-install-banner .btn[b-txzxyo936o] {
            width: 100%;
        }

    .dashboard-header[b-txzxyo936o] {
        align-items: stretch;
    }

        .dashboard-header h1[b-txzxyo936o] {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .dashboard-header p[b-txzxyo936o],
        .dashboard-subtitle[b-txzxyo936o] {
            font-size: 0.85rem;
            margin-top: 0.2rem;
        }

    .dashboard-actions[b-txzxyo936o] {
        display: none;
    }

    .dashboard-error-state[b-txzxyo936o] {
        align-items: stretch;
        flex-direction: column;
    }

        .dashboard-error-state .btn[b-txzxyo936o] {
            width: 100%;
        }

    .dashboard-panel[b-txzxyo936o] {
        padding: 0.85rem;
    }

    .next-shift-title[b-txzxyo936o] {
        font-size: 1.15rem;
    }

    .next-shift-time[b-txzxyo936o] {
        font-size: 0.95rem;
    }

    .dashboard-desktop-layout[b-txzxyo936o] {
        display: none;
    }

    .dashboard-mobile-layout[b-txzxyo936o] {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .mobile-week-strip[b-txzxyo936o] {
        gap: 0.35rem;
    }

    .mobile-week-day[b-txzxyo936o] {
        min-height: 72px;
        padding: 0.45rem 0.2rem;
    }

    .mobile-week-day-number[b-txzxyo936o] {
        font-size: 1rem;
    }

    .who-is-on-card[b-txzxyo936o] {
        padding: 0.9rem;
    }
}

.notification-list[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-item[b-txzxyo936o] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem;
    background: #fafafa;
}

.notification-header[b-txzxyo936o] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.notification-date[b-txzxyo936o] {
    font-size: 0.8rem;
    color: #6b7280;
    white-space: nowrap;
}

.notification-meta[b-txzxyo936o] {
    font-size: 0.85rem;
    color: var(--tenant-accent, #2563eb);
    margin-top: 0.25rem;
}

.notification-body[b-txzxyo936o] {
    margin-top: 0.5rem;
    white-space: pre-wrap;
    color: #111827;
}

.notification-footer[b-txzxyo936o] {
    margin-top: 0.75rem;
}

.calendar-header-bar[b-txzxyo936o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.calendar-header-title[b-txzxyo936o] {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}

.calendar-display-filters[b-txzxyo936o] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.calendar-display-filter[b-txzxyo936o] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0.4rem 0.7rem;
    border: 1px solid #dbe3ec;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

    .calendar-display-filter input[b-txzxyo936o] {
        margin: 0;
    }

@media (max-width: 900px) {
    .calendar-header-bar[b-txzxyo936o] {
        align-items: flex-start;
        flex-direction: column;
    }
}

.calendar-item--requested[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    border: 1px dashed #0284c7;
    background: #e0f2fe;
    color: #075985;
    white-space: normal;
}

.calendar-item--other[b-txzxyo936o] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    border: 1px solid #cbd5e1;
    background: #eef2f7;
    color: #334155;
    white-space: normal;
}

.calendar-item-status-marker[b-txzxyo936o] {
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calendar-item--requested .calendar-item-status-marker[b-txzxyo936o] {
    color: #0369a1;
}

.calendar-item--other .calendar-item-status-marker[b-txzxyo936o] {
    color: #64748b;
}

.calendar-item-event-name[b-txzxyo936o] {
    display: -webkit-box;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}


@media (max-width: 640px) {
    .notification-header[b-txzxyo936o] {
        flex-direction: column;
    }

    .notification-date[b-txzxyo936o] {
        white-space: normal;
    }
}



/* -------------------------------------------------------------------------
   Mobile week swipe animations
   ------------------------------------------------------------------------- */

.mobile-week-range-label[b-txzxyo936o] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-align: center;
}

.mobile-week-swipe-zone[b-txzxyo936o] {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    border-radius: 12px;
}

/* Exit animations — old week leaves */
.mobile-week-strip--exit-left[b-txzxyo936o] {
    animation: mobileWeekExitLeft-b-txzxyo936o 160ms cubic-bezier(0.4, 0, 0.8, 1) forwards;
}

.mobile-week-strip--exit-right[b-txzxyo936o] {
    animation: mobileWeekExitRight-b-txzxyo936o 160ms cubic-bezier(0.4, 0, 0.8, 1) forwards;
}

/* Enter animations — new week arrives */
.mobile-week-strip--enter-right[b-txzxyo936o] {
    animation: mobileWeekEnterRight-b-txzxyo936o 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-week-strip--enter-left[b-txzxyo936o] {
    animation: mobileWeekEnterLeft-b-txzxyo936o 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes mobileWeekExitLeft-b-txzxyo936o {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-52px);
    }
}

@keyframes mobileWeekExitRight-b-txzxyo936o {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(52px);
    }
}

@keyframes mobileWeekEnterRight-b-txzxyo936o {
    from {
        opacity: 0;
        transform: translateX(64px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mobileWeekEnterLeft-b-txzxyo936o {
    from {
        opacity: 0;
        transform: translateX(-64px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* /Components/Pages/CrewDetail.razor.rz.scp.css */
.crew-detail-page[b-3oiajiiyq7] {
    max-width: 960px;
}

.crew-detail-topbar[b-3oiajiiyq7] {
    margin-bottom: 1rem;
}

.crew-back-link[b-3oiajiiyq7] {
    text-decoration: none;
    padding-left: 0;
    font-weight: 600;
}

.crew-profile-hero[b-3oiajiiyq7], .crew-section-card[b-3oiajiiyq7] {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

    .crew-profile-hero .card-body[b-3oiajiiyq7], .crew-section-card .card-body[b-3oiajiiyq7] {
        padding: 1.25rem;
    }

.crew-profile-hero-inner[b-3oiajiiyq7] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.crew-avatar[b-3oiajiiyq7] {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e3a8a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.16);
}

.crew-profile-main[b-3oiajiiyq7] {
    flex: 1;
    min-width: 0;
}

.crew-profile-header-row[b-3oiajiiyq7] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.crew-profile-name[b-3oiajiiyq7] {
    margin: 0;
    font-size: 2rem;
    line-height: 1.1;
}

.crew-profile-subtitle[b-3oiajiiyq7] {
    color: #6b7280;
    margin-top: 0.35rem;
    font-size: 1rem;
}

.crew-profile-header-actions[b-3oiajiiyq7] {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.crew-badge-row[b-3oiajiiyq7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.crew-badge[b-3oiajiiyq7] {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
}

.crew-badge--success[b-3oiajiiyq7] {
    background: #dcfce7;
    color: #166534;
}

.crew-badge--primary[b-3oiajiiyq7] {
    background: #dbeafe;
    color: #1d4ed8;
}

.crew-badge--dark[b-3oiajiiyq7] {
    background: #e5e7eb;
    color: #111827;
}

.crew-badge--warning[b-3oiajiiyq7] {
    background: #fef3c7;
    color: #92400e;
}

.crew-badge--info[b-3oiajiiyq7] {
    background: #cffafe;
    color: #155e75;
}

.crew-badge--muted[b-3oiajiiyq7] {
    background: #f3f4f6;
    color: #6b7280;
}

.crew-hero-quick-actions[b-3oiajiiyq7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.crew-quick-action[b-3oiajiiyq7] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    padding: 0.55rem 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    color: #1f2937;
    background: #fff;
    font-weight: 600;
}

    .crew-quick-action:hover[b-3oiajiiyq7] {
        background: #f9fafb;
        color: #111827;
    }

.crew-inline-alert[b-3oiajiiyq7] {
    margin-top: 1rem;
    margin-bottom: 0;
}

.crew-section-header[b-3oiajiiyq7] {
    margin-bottom: 1rem;
}

    .crew-section-header h4[b-3oiajiiyq7] {
        margin: 0;
        font-size: 1.15rem;
    }

.crew-info-grid[b-3oiajiiyq7] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.crew-info-item[b-3oiajiiyq7] {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: #ffffff;
}

.crew-info-item--wide[b-3oiajiiyq7] {
    grid-column: span 2;
}

.crew-info-label[b-3oiajiiyq7] {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.crew-info-value[b-3oiajiiyq7] {
    font-size: 1.05rem;
    color: #111827;
    word-break: break-word;
}

.crew-info-value--with-action[b-3oiajiiyq7] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.crew-inline-icon[b-3oiajiiyq7] {
    text-decoration: none;
    font-size: 1.35rem;
    line-height: 1;
    color: #1d4ed8;
    flex-shrink: 0;
}

    .crew-inline-icon:hover[b-3oiajiiyq7] {
        color: #1e40af;
    }

.crew-notes-display[b-3oiajiiyq7] {
    min-height: 3rem;
    white-space: pre-wrap;
    color: #111827;
}

.crew-action-group[b-3oiajiiyq7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.crew-position-list[b-3oiajiiyq7] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.crew-position-card[b-3oiajiiyq7] {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1rem;
    background: #fff;
}

.crew-position-top[b-3oiajiiyq7] {
    margin-bottom: 0.35rem;
}

.form-label[b-3oiajiiyq7] {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
    .crew-profile-name[b-3oiajiiyq7] {
        font-size: 1.75rem;
    }

    .crew-info-grid[b-3oiajiiyq7] {
        grid-template-columns: 1fr;
    }

    .crew-info-item--wide[b-3oiajiiyq7] {
        grid-column: span 1;
    }

    .crew-profile-hero .card-body[b-3oiajiiyq7], .crew-section-card .card-body[b-3oiajiiyq7] {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .crew-profile-hero-inner[b-3oiajiiyq7] {
        flex-direction: column;
        align-items: flex-start;
    }

    .crew-avatar[b-3oiajiiyq7] {
        width: 76px;
        height: 76px;
        font-size: 1.45rem;
    }

    .crew-profile-name[b-3oiajiiyq7] {
        font-size: 1.55rem;
    }

    .crew-profile-header-actions[b-3oiajiiyq7] {
        width: 100%;
    }

        .crew-profile-header-actions .btn[b-3oiajiiyq7] {
            flex: 1 1 auto;
        }

    .crew-action-group .btn[b-3oiajiiyq7] {
        width: 100%;
    }

    .crew-quick-action[b-3oiajiiyq7] {
        width: 100%;
        justify-content: center;
    }
}



.clock-pin-panel[b-3oiajiiyq7] {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
    gap: 1rem;
    align-items: start;
}

.clock-pin-status[b-3oiajiiyq7],
.clock-pin-form[b-3oiajiiyq7] {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1rem;
    background: #ffffff;
}

.clock-pin-input[b-3oiajiiyq7] {
    max-width: 220px;
    font-size: 1.4rem;
    letter-spacing: 0.35rem;
    font-weight: 700;
    text-align: center;
}

.clock-pin-actions[b-3oiajiiyq7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .clock-pin-panel[b-3oiajiiyq7] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .clock-pin-input[b-3oiajiiyq7] {
        max-width: none;
    }

    .clock-pin-actions .btn[b-3oiajiiyq7] {
        width: 100%;
    }
}

.crew-section-header--split[b-3oiajiiyq7] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}



@media (max-width: 768px) {
    .clock-pin-panel[b-3oiajiiyq7] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .clock-pin-input[b-3oiajiiyq7] {
        max-width: none;
    }

    .clock-pin-actions .btn[b-3oiajiiyq7] {
        width: 100%;
    }
}
.crew-login-email-modal[b-3oiajiiyq7] {
    width: min(540px, calc(100vw - 2rem));
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.crew-login-email-modal-icon[b-3oiajiiyq7] {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #166534;
    font-size: 1.35rem;
    font-weight: 800;
}

.crew-login-email-modal-content[b-3oiajiiyq7] {
    flex: 1;
    min-width: 0;
}

    .crew-login-email-modal-content h4[b-3oiajiiyq7] {
        margin: 0 0 0.65rem;
        color: #111827;
    }

    .crew-login-email-modal-content p[b-3oiajiiyq7] {
        margin: 0;
        color: #4b5563;
        line-height: 1.6;
    }

.crew-login-email-modal-note[b-3oiajiiyq7] {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.5;
}

.crew-login-email-modal-actions[b-3oiajiiyq7] {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

@media (max-width: 576px) {
    .crew-login-email-modal[b-3oiajiiyq7] {
        flex-direction: column;
        padding: 1.25rem;
    }

    .crew-login-email-modal-actions[b-3oiajiiyq7] {
        width: 100%;
    }

        .crew-login-email-modal-actions .btn[b-3oiajiiyq7] {
            width: 100%;
        }
}
/* /Components/Pages/CrewDirectory.razor.rz.scp.css */
.crew-directory-page[b-07in5hw3ps] {
    width: 100%;
}

.crew-directory-header[b-07in5hw3ps] {
    margin-bottom: 1.25rem;
}

    .crew-directory-header h1[b-07in5hw3ps] {
        margin: 0;
        font-size: 2rem;
        line-height: 1.1;
    }

    .crew-directory-header p[b-07in5hw3ps] {
        margin: 0.4rem 0 0;
        color: #6b7280;
    }

.crew-create-card[b-07in5hw3ps],
.crew-list-card[b-07in5hw3ps] {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

    .crew-create-card .card-body[b-07in5hw3ps],
    .crew-list-card .card-body[b-07in5hw3ps] {
        padding: 1.25rem;
    }

.crew-section-heading[b-07in5hw3ps] {
    margin-bottom: 1rem;
}

    .crew-section-heading h4[b-07in5hw3ps] {
        margin: 0;
        font-size: 1.15rem;
    }

    .crew-section-heading p[b-07in5hw3ps] {
        margin: 0.35rem 0 0;
        color: #6b7280;
    }

.form-label[b-07in5hw3ps] {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.crew-create-toggles[b-07in5hw3ps] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.crew-toggle-pill[b-07in5hw3ps] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    background: #fff;
    font-weight: 600;
}

    .crew-toggle-pill input[b-07in5hw3ps] {
        margin: 0;
    }

.crew-list-toolbar[b-07in5hw3ps] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.crew-card-grid[b-07in5hw3ps] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.crew-directory-card[b-07in5hw3ps] {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.crew-directory-card--inactive[b-07in5hw3ps] {
    opacity: 0.82;
}

.crew-directory-card-link[b-07in5hw3ps] {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
}

    .crew-directory-card-link:hover[b-07in5hw3ps] {
        color: inherit;
        background: #fafafa;
    }

.crew-directory-card-top[b-07in5hw3ps] {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.crew-directory-avatar[b-07in5hw3ps] {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e3a8a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.16);
    overflow: hidden;
}

.crew-directory-avatar-image[b-07in5hw3ps] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.crew-directory-main[b-07in5hw3ps] {
    min-width: 0;
    flex: 1;
}

.crew-directory-name[b-07in5hw3ps] {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 0.45rem;
}

.crew-directory-meta[b-07in5hw3ps] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.crew-directory-meta-line[b-07in5hw3ps] {
    color: #6b7280;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.crew-directory-badges[b-07in5hw3ps] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.crew-badge[b-07in5hw3ps] {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.crew-badge--success[b-07in5hw3ps] {
    background: #dcfce7;
    color: #166534;
}

.crew-badge--primary[b-07in5hw3ps] {
    background: #dbeafe;
    color: #1d4ed8;
}

.crew-badge--dark[b-07in5hw3ps] {
    background: #e5e7eb;
    color: #111827;
}

.crew-badge--info[b-07in5hw3ps] {
    background: #cffafe;
    color: #155e75;
}

.crew-badge--muted[b-07in5hw3ps] {
    background: #f3f4f6;
    color: #6b7280;
}

.crew-create-header[b-07in5hw3ps] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.crew-create-toggle-btn[b-07in5hw3ps] {
    flex-shrink: 0;
}

.crew-create-form[b-07in5hw3ps] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.crew-create-actions[b-07in5hw3ps] {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .crew-card-grid[b-07in5hw3ps] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .crew-directory-header h1[b-07in5hw3ps] {
        font-size: 1.75rem;
    }

    .crew-create-card .card-body[b-07in5hw3ps],
    .crew-list-card .card-body[b-07in5hw3ps] {
        padding: 1rem;
    }

    .crew-directory-card-link[b-07in5hw3ps] {
        padding: 0.9rem;
    }

    .crew-create-header[b-07in5hw3ps] {
        align-items: stretch;
    }

    .crew-create-toggle-btn[b-07in5hw3ps] {
        width: 100%;
    }
}
/* /Components/Pages/CrewNotifications.razor.rz.scp.css */
.notification-list[b-69m25drffn] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-list--separated[b-69m25drffn] {
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.notification-item[b-69m25drffn] {
    padding: 1rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

    .notification-item:last-child[b-69m25drffn] {
        border-bottom: none;
    }

.notification-item--clickable[b-69m25drffn] {
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

    .notification-item--clickable:hover[b-69m25drffn] {
        background: #f8fafc;
    }

.notification-row-top[b-69m25drffn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.notification-main[b-69m25drffn] {
    min-width: 0;
    flex: 1;
}

.notification-right[b-69m25drffn] {
    flex: 0 0 auto;
}

.notification-subject[b-69m25drffn] {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.2rem;
}

.notification-date[b-69m25drffn] {
    font-size: 0.8rem;
    color: #6b7280;
    white-space: nowrap;
}

.notification-meta[b-69m25drffn] {
    font-size: 0.85rem;
    color: #2563eb;
}

.notification-footer[b-69m25drffn] {
    margin-top: 0.75rem;
}

.modal-backdrop[b-69m25drffn] {
    opacity: 0.4 !important;
}

.history-modal-content[b-69m25drffn] {
    border-radius: 12px;
}

.email-preview-shell[b-69m25drffn],
.sms-preview-shell[b-69m25drffn] {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.email-preview-toolbar[b-69m25drffn],
.sms-preview-toolbar[b-69m25drffn] {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.email-preview-label[b-69m25drffn] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
}

.email-preview-body[b-69m25drffn] {
    background: #f8f9fa;
    padding: 1rem;
    max-height: 65vh;
    overflow-y: auto;
}

    .email-preview-body table[b-69m25drffn] {
        width: 100% !important;
        max-width: 100% !important;
    }

    .email-preview-body img[b-69m25drffn] {
        max-width: 100%;
        height: auto;
    }

@media (max-width: 640px) {
    .notification-row-top[b-69m25drffn] {
        flex-direction: column;
        gap: 0.35rem;
    }

    .notification-date[b-69m25drffn] {
        white-space: normal;
    }
}
/* /Components/Pages/CrewProfile.razor.rz.scp.css */
.crew-profile-page[b-eny5huyt28] {
    max-width: 900px;
}

.crew-profile-header[b-eny5huyt28] {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.crew-profile-avatar-wrap[b-eny5huyt28] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.crew-profile-avatar[b-eny5huyt28] {
    width: 84px;
    height: 84px;
    min-width: 84px;
    min-height: 84px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1e3a8a;
    border: 2px solid #dbeafe;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.crew-profile-avatar-image[b-eny5huyt28] {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.crew-profile-avatar-actions[b-eny5huyt28] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 150px;
}

.crew-profile-header h1[b-eny5huyt28] {
    margin: 0;
}

.crew-profile-header p[b-eny5huyt28] {
    margin: 0.35rem 0 0;
    color: #6b7280;
}

.crew-profile-card[b-eny5huyt28] {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
}

    .crew-profile-card .card-body[b-eny5huyt28] {
        padding: 1.25rem;
    }

    .crew-profile-card h4[b-eny5huyt28] {
        margin-bottom: 1rem;
    }

.crew-profile-save[b-eny5huyt28] {
    margin-bottom: 1.5rem;
}

.form-label[b-eny5huyt28] {
    font-weight: 600;
    margin-bottom: 0.35rem;
}



.crew-calendar-header[b-eny5huyt28] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.crew-calendar-ready[b-eny5huyt28] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
}



.crew-calendar-title[b-eny5huyt28] {
    font-weight: 700;
    color: #111827;
}

.crew-calendar-subtitle[b-eny5huyt28] {
    color: #6b7280;
    font-size: 0.9rem;
}

.crew-calendar-actions[b-eny5huyt28] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.crew-calendar-url-details[b-eny5huyt28] {
    margin-top: 1rem;
    font-size: 0.9rem;
}

    .crew-calendar-url-details summary[b-eny5huyt28] {
        cursor: pointer;
        color: #4b5563;
        font-weight: 600;
    }

    .crew-calendar-url-details input[b-eny5huyt28] {
        font-size: 0.85rem;
    }

.crew-calendar-help[b-eny5huyt28] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}


.crew-photo-modal-backdrop[b-eny5huyt28] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
}

.crew-photo-modal[b-eny5huyt28] {
    width: min(100%, 460px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    overflow: hidden;
}

.crew-photo-modal-header[b-eny5huyt28],
.crew-photo-modal-footer[b-eny5huyt28] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.crew-photo-modal-footer[b-eny5huyt28] {
    border-bottom: none;
    border-top: 1px solid #e5e7eb;
    justify-content: flex-end;
}

.crew-photo-modal-body[b-eny5huyt28] {
    padding: 1.25rem;
}

.crew-photo-crop-canvas[b-eny5huyt28] {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 18px;
    background: #f3f4f6;
    touch-action: none;
    cursor: grab;
}

    .crew-photo-crop-canvas:active[b-eny5huyt28] {
        cursor: grabbing;
    }

.crew-photo-zoom[b-eny5huyt28] {
    margin-bottom: 0.75rem;
}

    .crew-photo-zoom input[type="range"][b-eny5huyt28] {
        width: 100%;
    }

.crew-photo-help[b-eny5huyt28] {
    margin: 0;
    color: #6b7280;
    font-size: 0.92rem;
}

@media (max-width: 640px) {
    .crew-profile-header[b-eny5huyt28] {
        align-items: flex-start;
    }

    .crew-profile-card .card-body[b-eny5huyt28] {
        padding: 1rem;
    }

    .crew-calendar-actions .btn[b-eny5huyt28] {
        width: 100%;
    }

    .crew-profile-avatar-actions[b-eny5huyt28] {
        width: 100%;
        max-width: 220px;
    }

    .crew-photo-modal[b-eny5huyt28] {
        width: 100%;
        border-radius: 18px;
    }

    .crew-photo-modal-header[b-eny5huyt28],
    .crew-photo-modal-body[b-eny5huyt28],
    .crew-photo-modal-footer[b-eny5huyt28] {
        padding: 1rem;
    }

    .crew-photo-modal-footer[b-eny5huyt28] {
        flex-direction: column-reverse;
    }

        .crew-photo-modal-footer .btn[b-eny5huyt28] {
            width: 100%;
        }
}

.crew-photo-loading[b-eny5huyt28] {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 0.2rem 0.1rem 0;
}

    .crew-photo-loading[b-eny5huyt28]::after {
        content: "...";
        display: inline-block;
        width: 1.2em;
        overflow: hidden;
        vertical-align: bottom;
        animation: crew-photo-dots-b-eny5huyt28 1.2s steps(4, end) infinite;
    }

@keyframes crew-photo-dots-b-eny5huyt28 {
    0% {
        width: 0;
    }

    25% {
        width: 0.3em;
    }

    50% {
        width: 0.6em;
    }

    75% {
        width: 0.9em;
    }

    100% {
        width: 1.2em;
    }
}
/* /Components/Pages/Crew/News.razor.rz.scp.css */
.news-list[b-1lpc1yemii] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-card[b-1lpc1yemii] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.news-card--unread[b-1lpc1yemii] {
    border-color: var(--tenant-accent, #2563eb);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--tenant-accent, #2563eb) 14%, transparent);
}

.news-card--read[b-1lpc1yemii] {
    opacity: 0.82;
}

.news-card-header[b-1lpc1yemii] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.news-card h2[b-1lpc1yemii] {
    margin: 0.15rem 0 0;
    font-size: 1.25rem;
}

.news-type[b-1lpc1yemii] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tenant-accent, #2563eb);
}

.news-date[b-1lpc1yemii] {
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: #6b7280;
}

.news-body[b-1lpc1yemii] {
    white-space: pre-wrap;
    color: #111827;
    line-height: 1.45;
}

.news-actions[b-1lpc1yemii] {
    margin-top: 1rem;
}

.news-unread-pill[b-1lpc1yemii] {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    background: color-mix(in srgb, var(--tenant-accent, #2563eb) 12%, white);
    color: var(--tenant-accent, #2563eb);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .news-card[b-1lpc1yemii] {
        padding: 0.9rem;
    }

    .news-card-header[b-1lpc1yemii] {
        flex-direction: column;
    }
}
/* /Components/Pages/Documents.razor.rz.scp.css */
.settings-help-modal[b-25qvsmeqxv] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-25qvsmeqxv] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-25qvsmeqxv] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-25qvsmeqxv] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-25qvsmeqxv] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-25qvsmeqxv] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-25qvsmeqxv] {
        color: #475569;
    }

.settings-help-example[b-25qvsmeqxv] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-25qvsmeqxv] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-25qvsmeqxv],
    .settings-help-modal-body[b-25qvsmeqxv],
    .settings-help-modal-footer[b-25qvsmeqxv] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-25qvsmeqxv] {
            width: 100%;
        }
}
/* /Components/Pages/EventDetail.razor.rz.scp.css */
.card-body h5[b-dw677x4jh9] {
    font-size: 1.1rem;
}

.border.rounded[b-dw677x4jh9] {
    transition: box-shadow 0.15s ease, transform 0.1s ease;
}

    .border.rounded:hover[b-dw677x4jh9] {
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transform: translateY(-1px);
    }

.badge[b-dw677x4jh9] {
    font-size: 0.75rem;
    padding: 0.35em 0.6em;
}

.form-label[b-dw677x4jh9] {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.card-header[b-dw677x4jh9] {
    background-color: #f8f9fa;
    font-weight: 600;
}
.form-label[b-dw677x4jh9] {
    font-weight: 600;
}

.bg-body-tertiary[b-dw677x4jh9] {
    background-color: #f8f9fa;
}


.settings-help-modal[b-dw677x4jh9] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-dw677x4jh9] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-dw677x4jh9] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-dw677x4jh9] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-dw677x4jh9] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-dw677x4jh9] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-dw677x4jh9] {
        color: #475569;
    }

.settings-help-example[b-dw677x4jh9] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-dw677x4jh9] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-dw677x4jh9],
    .settings-help-modal-body[b-dw677x4jh9],
    .settings-help-modal-footer[b-dw677x4jh9] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-dw677x4jh9] {
            width: 100%;
        }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashboard-page[b-nx4h7d9vfj] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.calendar-item-button[b-nx4h7d9vfj] {
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.dashboard-header[b-nx4h7d9vfj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

    .dashboard-header h1[b-nx4h7d9vfj] {
        margin: 0;
        font-size: 2rem;
    }

    .dashboard-header p[b-nx4h7d9vfj] {
        margin: 0.25rem 0 0;
        color: #666;
    }


.calendar-item-button[b-nx4h7d9vfj] {
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    background: none;
    padding: 0;
}

    .calendar-item-button:hover[b-nx4h7d9vfj] {
        opacity: 0.85;
    }


.dashboard-actions[b-nx4h7d9vfj] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dashboard-loading[b-nx4h7d9vfj],
.empty-state[b-nx4h7d9vfj] {
    color: #666;
}

.dashboard-cards[b-nx4h7d9vfj] {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 1rem;
}

.dashboard-card[b-nx4h7d9vfj] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.dashboard-card-label[b-nx4h7d9vfj] {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.dashboard-card-value[b-nx4h7d9vfj] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.dashboard-main-grid[b-nx4h7d9vfj] {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 1rem;
    align-items: start;
}

.dashboard-panel[b-nx4h7d9vfj] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.panel-header[b-nx4h7d9vfj] {
    margin-bottom: 1rem;
}

    .panel-header h3[b-nx4h7d9vfj] {
        margin: 0;
        font-size: 1.1rem;
    }

.upcoming-list[b-nx4h7d9vfj] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upcoming-item[b-nx4h7d9vfj] {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem;
    background: #fafafa;
}

.upcoming-item-top[b-nx4h7d9vfj] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.35rem;
}

.upcoming-item-title[b-nx4h7d9vfj] {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.upcoming-item-meta[b-nx4h7d9vfj] {
    font-size: 0.85rem;
    color: #6b7280;
}

.status-pill[b-nx4h7d9vfj] {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pill--filled[b-nx4h7d9vfj] {
    background: #dcfce7;
    color: #166534;
}

.status-pill--partial[b-nx4h7d9vfj] {
    background: #fef3c7;
    color: #92400e;
}

.status-pill--open[b-nx4h7d9vfj] {
    background: #fee2e2;
    color: #991b1b;
}

.status-pill--default[b-nx4h7d9vfj] {
    background: #e5e7eb;
    color: #374151;
}

.calendar-header-row[b-nx4h7d9vfj] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-day-name[b-nx4h7d9vfj] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.calendar-grid[b-nx4h7d9vfj] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-cell[b-nx4h7d9vfj] {
    min-height: 130px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.calendar-cell--muted[b-nx4h7d9vfj] {
    background: #f9fafb;
    color: #9ca3af;
}

.calendar-cell--today[b-nx4h7d9vfj] {
    border: 2px solid #2563eb;
}

.calendar-date[b-nx4h7d9vfj] {
    font-size: 0.85rem;
    font-weight: 700;
}

.calendar-items[b-nx4h7d9vfj] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-item[b-nx4h7d9vfj] {
    border-radius: 6px;
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
    line-height: 1.2;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #dbeafe;
}

.calendar-more[b-nx4h7d9vfj] {
    font-size: 0.75rem;
    color: #6b7280;
    padding-top: 0.15rem;
}

@media (max-width: 1100px) {
    .dashboard-main-grid[b-nx4h7d9vfj] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .dashboard-cards[b-nx4h7d9vfj] {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
}

@media (max-width: 640px) {
    .dashboard-cards[b-nx4h7d9vfj] {
        grid-template-columns: 1fr;
    }

    .calendar-header-row[b-nx4h7d9vfj],
    .calendar-grid[b-nx4h7d9vfj] {
        gap: 0.25rem;
    }

    .calendar-cell[b-nx4h7d9vfj] {
        min-height: 100px;
        padding: 0.35rem;
    }

    .calendar-item[b-nx4h7d9vfj] {
        font-size: 0.68rem;
    }
}
/* /Components/Pages/Import.razor.rz.scp.css */
.settings-help-modal[b-cr6ve9a3gh] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-cr6ve9a3gh] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-cr6ve9a3gh] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-cr6ve9a3gh] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-cr6ve9a3gh] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-cr6ve9a3gh] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-cr6ve9a3gh] {
        color: #475569;
    }

.settings-help-example[b-cr6ve9a3gh] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-cr6ve9a3gh] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-cr6ve9a3gh],
    .settings-help-modal-body[b-cr6ve9a3gh],
    .settings-help-modal-footer[b-cr6ve9a3gh] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-cr6ve9a3gh] {
            width: 100%;
        }
}

.import-template-panel[b-cr6ve9a3gh] {
    padding: 1rem 1.1rem;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
}

.import-template-content[b-cr6ve9a3gh] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.import-template-icon[b-cr6ve9a3gh] {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 1.25rem;
    font-weight: 800;
}

.import-template-panel h5[b-cr6ve9a3gh] {
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .import-template-content[b-cr6ve9a3gh] {
        flex-direction: column;
    }

    .import-template-panel .btn[b-cr6ve9a3gh] {
        width: 100%;
    }
}
/* /Components/Pages/Install.razor.rz.scp.css */
.install-page[b-fvqhgdgmdh] {
    max-width: 960px;
    margin: 0 auto;
}

.install-hero[b-fvqhgdgmdh],
.install-card[b-fvqhgdgmdh] {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

    .install-hero .card-body[b-fvqhgdgmdh],
    .install-card .card-body[b-fvqhgdgmdh] {
        padding: 1.5rem;
    }

.install-kicker[b-fvqhgdgmdh] {
    color: #1d4ed8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.install-hero h1[b-fvqhgdgmdh] {
    margin: 0;
    font-size: 2.1rem;
    line-height: 1.1;
}

.install-hero p[b-fvqhgdgmdh] {
    margin: 0.75rem 0 0;
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 720px;
}

.install-grid[b-fvqhgdgmdh] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.install-platform[b-fvqhgdgmdh] {
    display: inline-flex;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
}

.install-card h2[b-fvqhgdgmdh] {
    margin: 0 0 1rem;
    font-size: 1.35rem;
}

.install-steps[b-fvqhgdgmdh] {
    margin: 0;
    padding-left: 1.25rem;
}

    .install-steps li[b-fvqhgdgmdh] {
        margin-bottom: 0.75rem;
        color: #111827;
    }

.install-note[b-fvqhgdgmdh] {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.95rem;
}

.install-benefits[b-fvqhgdgmdh] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.install-benefit[b-fvqhgdgmdh] {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1rem;
    background: #ffffff;
}

    .install-benefit strong[b-fvqhgdgmdh] {
        display: block;
        margin-bottom: 0.4rem;
        color: #111827;
    }

    .install-benefit span[b-fvqhgdgmdh] {
        color: #6b7280;
    }

@media (max-width: 800px) {
    .install-grid[b-fvqhgdgmdh],
    .install-benefits[b-fvqhgdgmdh] {
        grid-template-columns: 1fr;
    }

    .install-hero h1[b-fvqhgdgmdh] {
        font-size: 1.75rem;
    }
}


.ios-share-icon[b-fvqhgdgmdh] {
    font-weight: bold;
    margin: 0 2px;
    font-size: 0.9rem;
}

.ios-share-box[b-fvqhgdgmdh] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1.8px solid #6b7280;
    border-radius: 4px;
    position: relative;
    top: 2px;
    margin-left: 3px;
}
/* /Components/Pages/Internal/SystemHealth.razor.rz.scp.css */
.system-health-page[b-onj129lnkp] {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.5rem;
}

.system-health-header[b-onj129lnkp] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.system-health-back-link[b-onj129lnkp] {
    display: inline-flex;
    margin-bottom: 0.7rem;
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

    .system-health-back-link:hover[b-onj129lnkp] {
        text-decoration: underline;
    }

.system-health-title-row[b-onj129lnkp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .system-health-title-row h1[b-onj129lnkp] {
        margin: 0;
        color: #0f172a;
        font-size: clamp(2rem, 3vw, 2.75rem);
        font-weight: 750;
        letter-spacing: -0.04em;
    }

    .system-health-title-row p[b-onj129lnkp] {
        margin: 0.35rem 0 0;
        color: #64748b;
        font-size: 1rem;
    }

.system-health-live-pill[b-onj129lnkp] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.72rem;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #f0fdf4;
    color: #166534;
    font-size: 0.78rem;
    font-weight: 700;
}

.system-health-live-dot[b-onj129lnkp] {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.system-health-refresh-button[b-onj129lnkp] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 42px;
    border-radius: 10px;
    font-weight: 650;
}

.system-health-refresh-icon[b-onj129lnkp] {
    font-size: 1.15rem;
    line-height: 1;
}

.system-health-loading-card[b-onj129lnkp],
.system-health-error-card[b-onj129lnkp] {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

    .system-health-loading-card div:last-child[b-onj129lnkp],
    .system-health-error-card div:last-child[b-onj129lnkp] {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .system-health-loading-card span[b-onj129lnkp],
    .system-health-error-card p[b-onj129lnkp] {
        margin: 0;
        color: #64748b;
    }

.system-health-error-card[b-onj129lnkp] {
    border-color: #fecaca;
    background: #fef2f2;
}

.system-health-error-icon[b-onj129lnkp] {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 1.4rem;
    font-weight: 800;
}

.system-health-overview[b-onj129lnkp] {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border: 1px solid;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

    .system-health-overview[b-onj129lnkp]::after {
        content: "";
        position: absolute;
        top: -70px;
        right: -55px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: currentColor;
        opacity: 0.055;
    }

.system-health-overview--healthy[b-onj129lnkp] {
    border-color: #86efac;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    color: #166534;
}

.system-health-overview--warning[b-onj129lnkp] {
    border-color: #fcd34d;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
    color: #92400e;
}

.system-health-overview--danger[b-onj129lnkp] {
    border-color: #fca5a5;
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    color: #991b1b;
}

.system-health-overview--unknown[b-onj129lnkp] {
    border-color: #cbd5e1;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    color: #475569;
}

.system-health-overview-main[b-onj129lnkp] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.system-health-overview-icon[b-onj129lnkp] {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: currentColor;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 850;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.system-health-eyebrow[b-onj129lnkp] {
    display: block;
    margin-bottom: 0.25rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.system-health-overview-status[b-onj129lnkp] {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.system-health-overview-main p[b-onj129lnkp] {
    max-width: 740px;
    margin: 0.35rem 0 0;
    color: #475569;
}

.system-health-overview-time[b-onj129lnkp] {
    position: relative;
    z-index: 1;
    min-width: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(100, 116, 139, 0.24);
}

    .system-health-overview-time span[b-onj129lnkp] {
        color: #64748b;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .system-health-overview-time strong[b-onj129lnkp] {
        margin: 0.2rem 0;
        color: #0f172a;
    }

    .system-health-overview-time small[b-onj129lnkp] {
        color: #64748b;
    }

.system-health-summary-grid[b-onj129lnkp] {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.system-health-summary-card[b-onj129lnkp] {
    min-width: 0;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-top-width: 4px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .system-health-summary-card:hover[b-onj129lnkp] {
        transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    }

.system-health-summary-card--healthy[b-onj129lnkp] {
    border-top-color: #22c55e;
}

.system-health-summary-card--warning[b-onj129lnkp] {
    border-top-color: #f59e0b;
}

.system-health-summary-card--danger[b-onj129lnkp] {
    border-top-color: #ef4444;
}

.system-health-summary-card--unknown[b-onj129lnkp] {
    border-top-color: #94a3b8;
}

.system-health-summary-card-top[b-onj129lnkp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.system-health-summary-card-icon[b-onj129lnkp] {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.45rem;
    border-radius: 9px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.system-health-summary-label[b-onj129lnkp] {
    display: block;
    margin-bottom: 0.25rem;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.system-health-summary-value[b-onj129lnkp] {
    display: block;
    overflow: hidden;
    color: #0f172a;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.system-health-summary-detail[b-onj129lnkp] {
    display: block;
    margin-top: 0.2rem;
    overflow: hidden;
    color: #64748b;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.system-health-status-pill[b-onj129lnkp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.system-health-status-pill--healthy[b-onj129lnkp] {
    background: #dcfce7;
    color: #166534;
}

.system-health-status-pill--warning[b-onj129lnkp] {
    background: #fef3c7;
    color: #92400e;
}

.system-health-status-pill--danger[b-onj129lnkp] {
    background: #fee2e2;
    color: #991b1b;
}

.system-health-status-pill--information[b-onj129lnkp] {
    background: #dbeafe;
    color: #1e40af;
}

.system-health-status-pill--unknown[b-onj129lnkp] {
    background: #e2e8f0;
    color: #475569;
}

.system-health-section[b-onj129lnkp] {
    margin-top: 2.25rem;
}

.system-health-section-heading[b-onj129lnkp] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .system-health-section-heading h2[b-onj129lnkp] {
        margin: 0;
        color: #0f172a;
        font-size: 1.45rem;
        font-weight: 800;
        letter-spacing: -0.025em;
    }

    .system-health-section-heading p[b-onj129lnkp] {
        margin: 0.25rem 0 0;
        color: #64748b;
    }

.system-health-section-kicker[b-onj129lnkp] {
    display: block;
    margin-bottom: 0.25rem;
    color: #2563eb;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.system-health-meter-grid[b-onj129lnkp] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.system-health-meter-card[b-onj129lnkp],
.system-health-metric-card[b-onj129lnkp],
.system-health-service-card[b-onj129lnkp],
.system-health-table-card[b-onj129lnkp],
.system-health-empty-card[b-onj129lnkp] {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.system-health-meter-card[b-onj129lnkp] {
    padding: 1.1rem;
}

.system-health-meter-header[b-onj129lnkp] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

    .system-health-meter-header > div[b-onj129lnkp] {
        min-width: 0;
    }

    .system-health-meter-header span:first-child[b-onj129lnkp] {
        display: block;
        color: #64748b;
        font-size: 0.78rem;
        font-weight: 700;
    }

    .system-health-meter-header strong[b-onj129lnkp] {
        display: block;
        margin-top: 0.15rem;
        overflow: hidden;
        color: #0f172a;
        font-size: 1.35rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.system-health-meter-percent[b-onj129lnkp],
.system-health-meter-badge[b-onj129lnkp] {
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}

.system-health-progress[b-onj129lnkp] {
    height: 10px;
    margin: 1rem 0 0.55rem;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
}

.system-health-progress-bar[b-onj129lnkp] {
    height: 100%;
    min-width: 0;
    border-radius: inherit;
    transition: width 300ms ease;
}

.system-health-progress-bar--healthy[b-onj129lnkp] {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.system-health-progress-bar--warning[b-onj129lnkp] {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.system-health-progress-bar--danger[b-onj129lnkp] {
    background: linear-gradient(90deg, #f87171, #dc2626);
}

.system-health-progress-bar--unknown[b-onj129lnkp] {
    background: #94a3b8;
}

.system-health-meter-footer[b-onj129lnkp] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.72rem;
}

.system-health-traffic-stats[b-onj129lnkp] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.9rem;
}

    .system-health-traffic-stats div[b-onj129lnkp] {
        padding: 0.7rem;
        border-radius: 10px;
        background: #f8fafc;
    }

    .system-health-traffic-stats span[b-onj129lnkp] {
        display: block;
        color: #64748b;
        font-size: 0.72rem;
        font-weight: 700;
    }

    .system-health-traffic-stats strong[b-onj129lnkp] {
        display: block;
        margin-top: 0.1rem;
        color: #0f172a;
        font-size: 1rem;
    }

.system-health-service-grid[b-onj129lnkp] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.system-health-service-card[b-onj129lnkp] {
    height: 100%;
    padding: 1.15rem;
}

.system-health-service-card-header[b-onj129lnkp] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

    .system-health-service-card-header h3[b-onj129lnkp] {
        margin: 0;
        color: #0f172a;
        font-size: 1.05rem;
        font-weight: 800;
    }

    .system-health-service-card-header p[b-onj129lnkp] {
        margin: 0.25rem 0 0;
        color: #64748b;
        font-size: 0.82rem;
    }

.system-health-service-card-body[b-onj129lnkp] {
    display: grid;
    gap: 0.65rem;
}

.system-health-service-metric[b-onj129lnkp] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #f1f5f9;
}

    .system-health-service-metric span[b-onj129lnkp] {
        color: #64748b;
        font-size: 0.78rem;
    }

    .system-health-service-metric strong[b-onj129lnkp] {
        color: #0f172a;
        font-size: 0.78rem;
        text-align: right;
    }

.system-health-service-message[b-onj129lnkp] {
    padding: 0.7rem;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.8rem;
}

.system-health-metric-grid[b-onj129lnkp] {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem;
}

.system-health-metric-card[b-onj129lnkp] {
    min-width: 0;
    padding: 1rem;
}

.system-health-metric-label[b-onj129lnkp] {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.system-health-metric-value[b-onj129lnkp] {
    margin-top: 0.4rem;
    overflow: hidden;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.system-health-metric-detail[b-onj129lnkp] {
    margin-top: 0.3rem;
    color: #64748b;
    font-size: 0.75rem;
}

.system-health-table-card[b-onj129lnkp] {
    margin-top: 1rem;
    overflow: hidden;
}

.system-health-table-card-header[b-onj129lnkp] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

    .system-health-table-card-header h3[b-onj129lnkp] {
        margin: 0;
        color: #0f172a;
        font-size: 1.05rem;
        font-weight: 800;
    }

    .system-health-table-card-header p[b-onj129lnkp] {
        margin: 0.2rem 0 0;
        color: #64748b;
        font-size: 0.82rem;
    }

    .system-health-table-card-header > span[b-onj129lnkp] {
        align-self: center;
        padding: 0.3rem 0.6rem;
        border-radius: 8px;
        background: #eff6ff;
        color: #1d4ed8;
        font-size: 0.72rem;
        font-weight: 800;
    }

.system-health-table-card .table[b-onj129lnkp] {
    font-size: 0.84rem;
}

    .system-health-table-card .table > :not(caption) > * > *[b-onj129lnkp] {
        padding: 0.75rem 1rem;
        border-color: #f1f5f9;
    }

.system-health-table-card thead th[b-onj129lnkp] {
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.system-health-table-size-column[b-onj129lnkp] {
    min-width: 180px;
}

.system-health-table-size-bar[b-onj129lnkp] {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
}

    .system-health-table-size-bar span[b-onj129lnkp] {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #60a5fa, #2563eb);
    }

.system-health-empty-card[b-onj129lnkp] {
    padding: 1.5rem;
    color: #64748b;
    text-align: center;
}

.system-health-alert-count[b-onj129lnkp] {
    align-self: flex-end;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 0.75rem;
    font-weight: 800;
}

.system-health-alert-grid[b-onj129lnkp] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.system-health-alert-card[b-onj129lnkp] {
    display: flex;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid;
    border-left-width: 5px;
    border-radius: 14px;
    background: #ffffff;
}

.system-health-alert-card--danger[b-onj129lnkp] {
    border-color: #fca5a5;
    background: #fff7f7;
}

.system-health-alert-card--warning[b-onj129lnkp] {
    border-color: #fcd34d;
    background: #fffdf5;
}

.system-health-alert-card--information[b-onj129lnkp] {
    border-color: #93c5fd;
    background: #f8fbff;
}

.system-health-alert-icon[b-onj129lnkp] {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-weight: 850;
}

.system-health-alert-content[b-onj129lnkp] {
    min-width: 0;
    flex: 1;
}

.system-health-alert-title-row[b-onj129lnkp] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

    .system-health-alert-title-row strong[b-onj129lnkp] {
        color: #0f172a;
    }

    .system-health-alert-title-row span[b-onj129lnkp] {
        color: #64748b;
        font-size: 0.72rem;
        font-weight: 800;
    }

.system-health-alert-content p[b-onj129lnkp] {
    margin: 0.3rem 0;
    color: #475569;
    font-size: 0.85rem;
}

.system-health-alert-content small[b-onj129lnkp] {
    color: #64748b;
}

@media (max-width: 1250px) {
    .system-health-summary-grid[b-onj129lnkp] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .system-health-meter-grid[b-onj129lnkp] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .system-health-metric-grid[b-onj129lnkp] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 950px) {
    .system-health-service-grid[b-onj129lnkp] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .system-health-overview[b-onj129lnkp] {
        flex-direction: column;
    }

    .system-health-overview-time[b-onj129lnkp] {
        min-width: 0;
        padding-top: 1rem;
        padding-left: 0;
        border-top: 1px solid rgba(100, 116, 139, 0.24);
        border-left: 0;
    }
}

@media (max-width: 700px) {
    .system-health-page[b-onj129lnkp] {
        padding: 1rem;
    }

    .system-health-header[b-onj129lnkp] {
        flex-direction: column;
    }

    .system-health-refresh-button[b-onj129lnkp] {
        width: 100%;
        justify-content: center;
    }

    .system-health-summary-grid[b-onj129lnkp],
    .system-health-meter-grid[b-onj129lnkp],
    .system-health-service-grid[b-onj129lnkp],
    .system-health-metric-grid[b-onj129lnkp],
    .system-health-alert-grid[b-onj129lnkp] {
        grid-template-columns: 1fr;
    }

    .system-health-overview-main[b-onj129lnkp] {
        align-items: flex-start;
    }

    .system-health-overview-icon[b-onj129lnkp] {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 13px;
        font-size: 1.35rem;
    }

    .system-health-overview-status[b-onj129lnkp] {
        font-size: 1.4rem;
    }

    .system-health-section-heading[b-onj129lnkp] {
        flex-direction: column;
    }

    .system-health-alert-count[b-onj129lnkp] {
        align-self: flex-start;
    }
}
/* /Components/Pages/Messages.razor.rz.scp.css */
.settings-help-modal[b-acg9ctnhof] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-acg9ctnhof] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-acg9ctnhof] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-acg9ctnhof] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-acg9ctnhof] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-acg9ctnhof] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-acg9ctnhof] {
        color: #475569;
    }

.settings-help-example[b-acg9ctnhof] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-acg9ctnhof] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-acg9ctnhof],
    .settings-help-modal-body[b-acg9ctnhof],
    .settings-help-modal-footer[b-acg9ctnhof] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-acg9ctnhof] {
            width: 100%;
        }
}


/* /Components/Pages/OpenShifts.razor.rz.scp.css */
.card-body .border.rounded[b-2tlsxb9sdo] {
    transition: box-shadow 0.15s ease, transform 0.1s ease;
}

    .card-body .border.rounded:hover[b-2tlsxb9sdo] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-1px);
    }

.badge[b-2tlsxb9sdo] {
    font-size: 0.75rem;
}

.fs-5[b-2tlsxb9sdo] {
    font-size: 1.1rem !important;
}

.settings-help-modal[b-2tlsxb9sdo] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-2tlsxb9sdo] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-2tlsxb9sdo] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-2tlsxb9sdo] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-2tlsxb9sdo] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-2tlsxb9sdo] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-2tlsxb9sdo] {
        color: #475569;
    }

.settings-help-example[b-2tlsxb9sdo] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-2tlsxb9sdo] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-2tlsxb9sdo],
    .settings-help-modal-body[b-2tlsxb9sdo],
    .settings-help-modal-footer[b-2tlsxb9sdo] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-2tlsxb9sdo] {
            width: 100%;
        }
}


/* /Components/Pages/Positions.razor.rz.scp.css */
.position-create-card .card-title[b-s6wzsvm20q] {
    margin-bottom: 0;
}

.position-create-panel[b-s6wzsvm20q] {
    padding-top: 0.25rem;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 640px) {
    .position-create-card .btn[b-s6wzsvm20q] {
        width: 100%;
    }
}


.settings-help-modal[b-s6wzsvm20q] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-s6wzsvm20q] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-s6wzsvm20q] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-s6wzsvm20q] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-s6wzsvm20q] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-s6wzsvm20q] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-s6wzsvm20q] {
        color: #475569;
    }

.settings-help-example[b-s6wzsvm20q] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-s6wzsvm20q] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-s6wzsvm20q],
    .settings-help-modal-body[b-s6wzsvm20q],
    .settings-help-modal-footer[b-s6wzsvm20q] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-s6wzsvm20q] {
            width: 100%;
        }
}
/* /Components/Pages/Reports.razor.rz.scp.css */
.reports-page[b-lvuzgvveea] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reports-header[b-lvuzgvveea] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

    .reports-header h1[b-lvuzgvveea] {
        margin: 0;
        font-size: 2rem;
    }

.reports-subtitle[b-lvuzgvveea] {
    margin: 0.25rem 0 0;
    color: #666;
}

.reports-filters-card[b-lvuzgvveea],
.reports-table-card[b-lvuzgvveea],
.reports-empty-card[b-lvuzgvveea],
.reports-summary-card[b-lvuzgvveea] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.reports-filters-card[b-lvuzgvveea],
.reports-table-card[b-lvuzgvveea],
.reports-empty-card[b-lvuzgvveea] {
    padding: 1rem;
}

.reports-filters[b-lvuzgvveea] {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.reports-field[b-lvuzgvveea] {
    min-width: 180px;
}

    .reports-field label[b-lvuzgvveea] {
        display: block;
        font-weight: 600;
        margin-bottom: 0.35rem;
    }

.reports-actions[b-lvuzgvveea] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.reports-summary-grid[b-lvuzgvveea] {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 1rem;
}

.reports-summary-card[b-lvuzgvveea] {
    padding: 1rem;
}

.reports-summary-label[b-lvuzgvveea] {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.reports-summary-value[b-lvuzgvveea] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.reports-table[b-lvuzgvveea] {
    margin-bottom: 0;
    font-size: 0.95rem;
}

    .reports-table th[b-lvuzgvveea] {
        white-space: nowrap;
    }

    .reports-table td[b-lvuzgvveea],
    .reports-table th[b-lvuzgvveea] {
        vertical-align: middle;
    }

.reports-total-label[b-lvuzgvveea] {
    text-align: right;
    font-weight: 700;
}

.status-pill[b-lvuzgvveea] {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pill--confirmed[b-lvuzgvveea] {
    background: #ecfdf3;
    color: #067647;
    border: 1px solid #abefc6;
}

.status-pill--assigned[b-lvuzgvveea] {
    background: #eff8ff;
    color: #175cd3;
    border: 1px solid #b2ddff;
}

.status-pill--default[b-lvuzgvveea] {
    background: #e5e7eb;
    color: #374151;
    border: 1px solid transparent;
}

@media (max-width: 900px) {
    .reports-summary-grid[b-lvuzgvveea] {
        grid-template-columns: 1fr;
    }

    .reports-filters[b-lvuzgvveea] {
        align-items: stretch;
    }

    .reports-field[b-lvuzgvveea] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reports-header[b-lvuzgvveea] {
        align-items: stretch;
    }

    .reports-actions[b-lvuzgvveea] {
        width: 100%;
    }

        .reports-actions .btn[b-lvuzgvveea] {
            flex: 1 1 auto;
        }

    .reports-summary-value[b-lvuzgvveea] {
        font-size: 1.75rem;
    }
}

.reports-view-toggle[b-lvuzgvveea] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.reports-number[b-lvuzgvveea] {
    text-align: right;
    white-space: nowrap;
}

.reports-group-list[b-lvuzgvveea] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reports-group-card[b-lvuzgvveea] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.reports-group-header[b-lvuzgvveea] {
    width: 100%;
    border: none;
    background: transparent;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
}

    .reports-group-header:hover[b-lvuzgvveea] {
        background: #f9fafb;
    }

.reports-group-header-main[b-lvuzgvveea] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reports-group-name[b-lvuzgvveea] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.reports-group-meta[b-lvuzgvveea] {
    font-size: 0.9rem;
    color: #6b7280;
}

.reports-group-totals[b-lvuzgvveea] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.reports-group-total[b-lvuzgvveea] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    min-width: 90px;
}

.reports-group-total-label[b-lvuzgvveea] {
    font-size: 0.78rem;
    color: #6b7280;
}

.reports-group-chevron[b-lvuzgvveea] {
    font-size: 1.4rem;
    line-height: 1;
    color: #6b7280;
    min-width: 20px;
    text-align: center;
}

.reports-group-body[b-lvuzgvveea] {
    border-top: 1px solid #e5e7eb;
    padding: 0.75rem 1rem 1rem;
}

.reports-group-table[b-lvuzgvveea] {
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .reports-group-header[b-lvuzgvveea] {
        flex-direction: column;
        align-items: stretch;
    }

    .reports-group-totals[b-lvuzgvveea] {
        justify-content: space-between;
    }

    .reports-group-total[b-lvuzgvveea] {
        align-items: flex-start;
    }
}


.reports-filters-card[b-lvuzgvveea] {
    position: relative;
}

.reports-export-row[b-lvuzgvveea] {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
    position: relative;
    z-index: 20;
}

.reports-export-button[b-lvuzgvveea] {
    position: relative;
    z-index: 21;
    pointer-events: auto;
}

.settings-help-modal[b-lvuzgvveea] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-lvuzgvveea] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-lvuzgvveea] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-lvuzgvveea] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-lvuzgvveea] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-lvuzgvveea] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-lvuzgvveea] {
        color: #475569;
    }

.settings-help-example[b-lvuzgvveea] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-lvuzgvveea] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-lvuzgvveea],
    .settings-help-modal-body[b-lvuzgvveea],
    .settings-help-modal-footer[b-lvuzgvveea] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-lvuzgvveea] {
            width: 100%;
        }
}


/* /Components/Pages/Requests.razor.rz.scp.css */
.request-group-toggle[b-owb5bmbf93] {
    background: #f8fafc;
    border: none;
    border-radius: 0;
}

    .request-group-toggle:hover[b-owb5bmbf93] {
        background: #f1f5f9;
    }

.request-group-summary[b-owb5bmbf93] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.request-summary-pill[b-owb5bmbf93] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.request-summary-icon[b-owb5bmbf93] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1rem;
    font-weight: 700;
}

.request-summary-pill--full[b-owb5bmbf93] {
    background: #dcfce7;
    color: #166534;
}

.request-summary-pill--partial[b-owb5bmbf93] {
    background: #fef3c7;
    color: #92400e;
}

.request-summary-pill--open[b-owb5bmbf93] {
    background: #fee2e2;
    color: #991b1b;
}

.settings-help-modal[b-owb5bmbf93] {
    width: min(680px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    border: 1px solid #e5e7eb;
}

.settings-help-modal-header[b-owb5bmbf93] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-help-modal-body[b-owb5bmbf93] {
    padding: 1.25rem;
}

.settings-help-modal-footer[b-owb5bmbf93] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.settings-help-section[b-owb5bmbf93] {
    margin-bottom: 1.5rem;
}

    .settings-help-section h5[b-owb5bmbf93] {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .settings-help-section p[b-owb5bmbf93] {
        color: #475569;
    }

.settings-help-example[b-owb5bmbf93] {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 576px) {
    .settings-help-modal[b-owb5bmbf93] {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }

    .settings-help-modal-header[b-owb5bmbf93],
    .settings-help-modal-body[b-owb5bmbf93],
    .settings-help-modal-footer[b-owb5bmbf93] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .settings-help-modal-footer .btn[b-owb5bmbf93] {
            width: 100%;
        }
}
/* /Components/Pages/Trial.razor.rz.scp.css */
.trial-page[b-hybdqw9534] {
    padding: 4.5rem 1rem 5rem;
}

.trial-shell[b-hybdqw9534] {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 4rem;
    align-items: start;
}

.trial-intro[b-hybdqw9534] {
    padding-top: 2rem;
}

.trial-kicker[b-hybdqw9534] {
    display: inline-flex;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.75rem;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trial-intro h1[b-hybdqw9534] {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.trial-lead[b-hybdqw9534] {
    margin: 1.5rem 0 0;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.75;
}

.trial-benefits[b-hybdqw9534] {
    display: grid;
    gap: 1.35rem;
    margin-top: 2.25rem;
}

.trial-benefit[b-hybdqw9534] {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.trial-benefit-marker[b-hybdqw9534] {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 6px #dbeafe;
}

.trial-benefit strong[b-hybdqw9534] {
    display: block;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.trial-benefit p[b-hybdqw9534] {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.trial-note[b-hybdqw9534] {
    margin-top: 2rem;
    padding: 1rem 1.1rem;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
}

.trial-card[b-hybdqw9534] {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.12);
}

.trial-card-header[b-hybdqw9534] {
    margin-bottom: 1.6rem;
}

    .trial-card-header h2[b-hybdqw9534],
    .trial-success h2[b-hybdqw9534] {
        margin: 0;
        color: #0f172a;
        font-size: 1.65rem;
        letter-spacing: -0.03em;
    }

    .trial-card-header p[b-hybdqw9534] {
        margin: 0.45rem 0 0;
        color: #64748b;
    }

.trial-field[b-hybdqw9534] {
    margin-bottom: 1.15rem;
}

    .trial-field label[b-hybdqw9534] {
        display: block;
        margin-bottom: 0.45rem;
        color: #334155;
        font-size: 0.9rem;
        font-weight: 700;
    }

    .trial-field .form-control[b-hybdqw9534],
    .trial-field .form-select[b-hybdqw9534] {
        min-height: 48px;
        border-color: #cbd5e1;
        border-radius: 11px;
    }

        .trial-field .form-control:focus[b-hybdqw9534],
        .trial-field .form-select:focus[b-hybdqw9534] {
            border-color: #3b82f6;
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.14);
        }

.trial-name-grid[b-hybdqw9534] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.subdomain-row[b-hybdqw9534] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
}

.subdomain-preview[b-hybdqw9534],
.trial-field-help[b-hybdqw9534] {
    margin-top: 0.45rem;
    color: #64748b;
    font-size: 0.82rem;
}

.subdomain-preview[b-hybdqw9534] {
    margin-top: 0.45rem;
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 750;
    overflow-wrap: anywhere;
}

    .subdomain-preview span[b-hybdqw9534] {
        color: #1d4ed8;
        font-weight: 750;
    }

.subdomain-status[b-hybdqw9534] {
    margin-top: 0.45rem;
    font-size: 0.84rem;
    font-weight: 700;
}

    .subdomain-status.available[b-hybdqw9534] {
        color: #15803d;
    }

    .subdomain-status.unavailable[b-hybdqw9534] {
        color: #b91c1c;
    }

.trial-terms[b-hybdqw9534] {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin-top: 1.4rem;
}

    .trial-terms .form-check-input[b-hybdqw9534] {
        flex: 0 0 auto;
        margin-top: 0.25rem;
    }

    .trial-terms label[b-hybdqw9534] {
        color: #475569;
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .trial-terms a[b-hybdqw9534] {
        color: #1d4ed8;
        font-weight: 700;
        text-decoration: none;
    }

.trial-primary-button[b-hybdqw9534] {
    width: 100%;
    min-height: 50px;
    margin-top: 1.35rem;
    border-radius: 11px;
    font-weight: 800;
}

.trial-submit-note[b-hybdqw9534] {
    margin: 0.7rem 0 0;
    color: #64748b;
    text-align: center;
    font-size: 0.84rem;
}

.validation-message[b-hybdqw9534] {
    display: block;
    margin-top: 0.35rem;
    color: #b91c1c;
    font-size: 0.82rem;
}

.trial-success[b-hybdqw9534] {
    padding: 1rem 0 0;
    text-align: center;
}

.trial-success-icon[b-hybdqw9534] {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #dcfce7;
}

    .trial-success-icon span[b-hybdqw9534] {
        width: 22px;
        height: 12px;
        border-left: 4px solid #15803d;
        border-bottom: 4px solid #15803d;
        transform: rotate(-45deg) translate(2px, -2px);
    }

.trial-success > p[b-hybdqw9534] {
    margin: 0.75rem auto 0;
    color: #64748b;
    line-height: 1.65;
}

.trial-success-details[b-hybdqw9534] {
    display: grid;
    gap: 0.75rem;
    margin: 1.6rem 0 0;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    text-align: left;
}

    .trial-success-details div[b-hybdqw9534] {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .trial-success-details span[b-hybdqw9534] {
        color: #64748b;
        font-size: 0.85rem;
    }

    .trial-success-details strong[b-hybdqw9534] {
        color: #0f172a;
        font-size: 0.88rem;
        text-align: right;
        overflow-wrap: anywhere;
    }

.trial-success-help[b-hybdqw9534] {
    margin-top: 1.4rem !important;
}

.trial-email-reminder[b-hybdqw9534] {
    font-size: 0.84rem;
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .trial-shell[b-hybdqw9534] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trial-intro[b-hybdqw9534] {
        max-width: 680px;
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .trial-page[b-hybdqw9534] {
        padding: 2rem 0.8rem 3rem;
    }

    .trial-card[b-hybdqw9534] {
        padding: 1.35rem;
        border-radius: 19px;
    }

    .trial-name-grid[b-hybdqw9534] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .subdomain-row[b-hybdqw9534] {
        grid-template-columns: 1fr;
    }

    .trial-success-details div[b-hybdqw9534] {
        flex-direction: column;
        gap: 0.15rem;
    }

    .trial-success-details strong[b-hybdqw9534] {
        text-align: left;
    }
}
/* /Components/Pages/WorkHistory.razor.rz.scp.css */
.crew-work-history-page[b-kjvcgzprr3] {
    max-width: 1200px;
}

.crew-work-history-header[b-kjvcgzprr3] {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

    .crew-work-history-header h1[b-kjvcgzprr3] {
        margin: 0;
    }

    .crew-work-history-header p[b-kjvcgzprr3] {
        margin: 0.35rem 0 0;
        color: #6b7280;
    }

.crew-work-history-card[b-kjvcgzprr3],
.crew-work-history-summary-card[b-kjvcgzprr3] {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
}

    .crew-work-history-card .card-body[b-kjvcgzprr3],
    .crew-work-history-summary-card .card-body[b-kjvcgzprr3] {
        padding: 1.25rem;
    }

.crew-work-history-filters[b-kjvcgzprr3] {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.crew-work-history-field[b-kjvcgzprr3] {
    min-width: 180px;
}

.crew-work-history-actions[b-kjvcgzprr3] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.crew-work-history-toggle-row[b-kjvcgzprr3] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.crew-work-history-summary[b-kjvcgzprr3] {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.crew-work-history-summary-label[b-kjvcgzprr3] {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.crew-work-history-summary-value[b-kjvcgzprr3] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.crew-work-history-table[b-kjvcgzprr3] {
    margin-bottom: 0;
    font-size: 0.95rem;
}

    .crew-work-history-table th[b-kjvcgzprr3] {
        white-space: nowrap;
    }

    .crew-work-history-table td[b-kjvcgzprr3],
    .crew-work-history-table th[b-kjvcgzprr3] {
        vertical-align: middle;
    }

.crew-work-history-number[b-kjvcgzprr3] {
    text-align: right;
    white-space: nowrap;
}

.crew-work-history-total-label[b-kjvcgzprr3] {
    text-align: right;
    font-weight: 700;
}

@media (max-width: 900px) {
    .crew-work-history-summary[b-kjvcgzprr3] {
        grid-template-columns: 1fr;
    }

    .crew-work-history-filters[b-kjvcgzprr3] {
        align-items: stretch;
    }

    .crew-work-history-field[b-kjvcgzprr3] {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .crew-work-history-card .card-body[b-kjvcgzprr3],
    .crew-work-history-summary-card .card-body[b-kjvcgzprr3] {
        padding: 1rem;
    }

    .crew-work-history-actions .btn[b-kjvcgzprr3],
    .crew-work-history-toggle-row .btn[b-kjvcgzprr3] {
        width: 100%;
    }

    .crew-work-history-summary-value[b-kjvcgzprr3] {
        font-size: 1.75rem;
    }
}
/* /Components/Shared/InAppAnnouncementPopup.razor.rz.scp.css */
.announcement-popup-backdrop[b-ybb19fegnl] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(2px);
}

.announcement-popup-layer[b-ybb19fegnl] {
    position: fixed;
    inset: 0;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.announcement-popup-card[b-ybb19fegnl] {
    width: min(100%, 560px);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
    animation: announcementPopupEnter-b-ybb19fegnl 180ms ease-out;
}

.announcement-popup-heading[b-ybb19fegnl] {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.announcement-popup-icon[b-ybb19fegnl] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix( in srgb, var(--tenant-accent, #2563eb) 12%, white );
    font-size: 1.5rem;
}

.announcement-popup-heading-copy[b-ybb19fegnl] {
    min-width: 0;
}

.announcement-popup-type[b-ybb19fegnl] {
    margin-bottom: 0.2rem;
    color: var(--tenant-accent, #2563eb);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.announcement-popup-heading h2[b-ybb19fegnl] {
    margin: 0;
    color: #111827;
    font-size: 1.45rem;
    line-height: 1.25;
}

.announcement-popup-body[b-ybb19fegnl] {
    margin-top: 1.15rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.55;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.announcement-popup-actions[b-ybb19fegnl] {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

@keyframes announcementPopupEnter-b-ybb19fegnl {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .announcement-popup-layer[b-ybb19fegnl] {
        align-items: flex-end;
        padding: 0.75rem;
    }

    .announcement-popup-card[b-ybb19fegnl] {
        width: 100%;
        max-height: calc(100vh - 1.5rem);
        border-radius: 18px;
        padding: 1.1rem;
    }

    .announcement-popup-heading h2[b-ybb19fegnl] {
        font-size: 1.25rem;
    }

    .announcement-popup-actions[b-ybb19fegnl] {
        flex-direction: column-reverse;
    }

        .announcement-popup-actions .btn[b-ybb19fegnl] {
            width: 100%;
        }
}
