/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════════════
   MAIN LAYOUT  — glass topbar + sidebar shell
   ═══════════════════════════════════════════════════════════════════════════ */

.page[b-n7xnb8e6me] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-n7xnb8e6me] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--hr-page-bg);
    min-height: 100vh;
}

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.sidebar[b-n7xnb8e6me] {
    background: var(--hr-sidebar-bg);
}

/* ── Top Bar (glass) ──────────────────────────────────────────────────────── */
.top-row[b-n7xnb8e6me] {
    min-height: 3.75rem;
    background: var(--hr-topbar-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--hr-topbar-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 20px rgba(99, 102, 241, 0.08);
}

.topbar-left[b-n7xnb8e6me] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-breadcrumb[b-n7xnb8e6me] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hr-text-secondary);
}

.topbar-title[b-n7xnb8e6me] {
    color: var(--hr-text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.topbar-right[b-n7xnb8e6me] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-time[b-n7xnb8e6me] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hr-text-muted);
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
    background: var(--hr-chip-bg);
    border: 1px solid var(--hr-chip-border);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
}

.topbar-user-chip[b-n7xnb8e6me] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--hr-chip-bg);
    border: 1px solid var(--hr-chip-border);
    border-radius: 999px;
    padding: 0.25rem 0.75rem 0.25rem 0.35rem;
    cursor: default;
    transition: background 0.2s;
}

.topbar-user-chip:hover[b-n7xnb8e6me] {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.topbar-user-avatar[b-n7xnb8e6me] {
    font-size: 1.3rem;
    color: var(--hr-primary);
    line-height: 1;
}

.topbar-user-name[b-n7xnb8e6me] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hr-text-primary);
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar-signout[b-n7xnb8e6me] {
    font-size: 0.78rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Content area ─────────────────────────────────────────────────────────── */
article.content[b-n7xnb8e6me] {
    flex: 1;
    padding: 1.25rem 1.5rem 2rem;
}

/* ── Error UI ─────────────────────────────────────────────────────────────── */
#blazor-error-ui[b-n7xnb8e6me] {
    color-scheme: light only;
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: #fff;
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(99, 102, 241, 0.4);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
    font-size: 0.9rem;
    border-top: 2px solid #6366f1;
}

#blazor-error-ui a[b-n7xnb8e6me] {
    color: #a5b4fc;
    text-decoration: underline;
    margin-left: 0.5rem;
}

#blazor-error-ui .dismiss[b-n7xnb8e6me] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 640.98px) {
    .topbar-time[b-n7xnb8e6me] { display: none; }
    .topbar-title[b-n7xnb8e6me] { font-size: 0.82rem; }
}

@media (min-width: 641px) {
    .page[b-n7xnb8e6me] {
        flex-direction: row;
    }

    .sidebar[b-n7xnb8e6me] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
        overflow-x: hidden;
        flex-shrink: 0;
    }

    .top-row[b-n7xnb8e6me] {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    article.content[b-n7xnb8e6me] {
        padding: 1.25rem 1.75rem 2rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════════════
   NAV MENU — deep dark glassmorphic sidebar
   ═══════════════════════════════════════════════════════════════════════════ */

/* Brand bar */
.top-row[b-zryuqtk4ii] {
    min-height: 4rem;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
}

.navbar-brand[b-zryuqtk4ii] {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    line-height: 1;
}

.navbar-brand .bi[b-zryuqtk4ii] {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: auto;
    height: auto;
    margin-right: 0;
    top: 0;
}

/* Mobile toggle */
.navbar-toggler[b-zryuqtk4ii] {
    appearance: none;
    cursor: pointer;
    width: 3rem;
    height: 2.25rem;
    color: white;
    position: absolute;
    top: 0.875rem;
    right: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.5rem rgba(255,255,255,0.08);
    transition: background-color 0.2s;
}

.navbar-toggler:checked[b-zryuqtk4ii] {
    background-color: rgba(99, 102, 241, 0.3);
}

/* Scroll container */
.nav-scrollable[b-zryuqtk4ii] {
    display: none;
    padding: 0.5rem 0 1rem;
}

.navbar-toggler:checked ~ .nav-scrollable[b-zryuqtk4ii] {
    display: block;
}

/* ── Icons ───────────────────────────────────────────────────────────────── */
.bi[b-zryuqtk4ii] {
    display: inline-block;
    position: relative;
    width: 1.15rem;
    height: 1.15rem;
    margin-right: 0.65rem;
    top: -1px;
    background-size: cover;
    flex-shrink: 0;
}

/* ── Nav items ───────────────────────────────────────────────────────────── */
.nav-item[b-zryuqtk4ii] {
    font-size: 0.875rem;
    padding-bottom: 0.1rem;
}

.nav-item[b-zryuqtk4ii]  .nav-link {
    color: rgba(255,255,255,0.65);
    background: none;
    border: none;
    border-radius: 8px;
    height: 2.75rem;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0.75rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: var(--hr-font);
}

.nav-item[b-zryuqtk4ii]  .nav-link:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

.nav-item[b-zryuqtk4ii]  a.active {
    background: linear-gradient(90deg, rgba(99,102,241,0.25) 0%, rgba(99,102,241,0.08) 100%);
    color: #fff;
    box-shadow: inset 3px 0 0 #6366f1;
    font-weight: 600;
}

/* ── Responsive wide sidebar ─────────────────────────────────────────────── */
@media (min-width: 641px) {
    .navbar-toggler[b-zryuqtk4ii] {
        display: none;
    }

    .nav-scrollable[b-zryuqtk4ii] {
        display: block;
        overflow-y: auto;
        overflow-x: hidden;
        /* fill remaining height below brand bar */
        height: calc(100vh - 4rem);
        padding-bottom: 2rem;
    }

    /* Custom scrollbar */
    .nav-scrollable[b-zryuqtk4ii]::-webkit-scrollbar {
        width: 3px;
    }
    .nav-scrollable[b-zryuqtk4ii]::-webkit-scrollbar-track {
        background: transparent;
    }
    .nav-scrollable[b-zryuqtk4ii]::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.12);
        border-radius: 999px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   All the SVG icon classes for nav items
   ═══════════════════════════════════════════════════════════════════════════ */
.bi-house-door-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}
.bi-speedometer2-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-1 0V4.5A.5.5 0 0 1 8 4M3.732 5.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707zM2 10a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 10m9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5m.754-4.246a.389.389 0 0 0-.527-.02L7.547 9.31a.91.91 0 1 0 1.302 1.258l3.434-4.297a.389.389 0 0 0-.029-.518z'/%3E%3Cpath fill-rule='evenodd' d='M0 10a8 8 0 1 1 15.547 2.661c-.442 1.253-1.845 1.602-2.932 1.25C11.309 13.488 9.475 13 8 13c-1.474 0-3.31.488-4.615.911-1.087.352-2.49.003-2.932-1.25A7.99 7.99 0 0 1 0 10m8-7a7 7 0 0 0-6.603 9.329c.203.575.923.876 1.68.63C4.397 12.533 6.358 12 8 12s3.604.532 4.923.96c.757.245 1.477-.056 1.68-.631A7 7 0 0 0 8 3'/%3E%3C/svg%3E");
}
.bi-people-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}
.bi-clipboard2-pulse-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z'/%3E%3Cpath d='M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5zm6.954 7.456-.91-3.64-.507 2.534a.5.5 0 0 1-.961.08L7.19 10H6.5a.5.5 0 0 1 0-1h1a.5.5 0 0 1 .49.402l.14.702.97-4.884a.5.5 0 0 1 .92-.146l1.09 3.635.493-1.48A.5.5 0 0 1 12 7h.5a.5.5 0 0 1 0 1h-.167l-.833 2.496a.5.5 0 0 1-.946-.04'/%3E%3C/svg%3E");
}
.bi-hospital-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.5 5.034v1.1l.953-.55.5.867L9 7l.953.55-.5.866-.953-.55v1.1h-1v-1.1l-.953.55-.5-.866L7 7l-.953-.55.5-.866.953.55v-1.1z'/%3E%3Cpath fill-rule='evenodd' d='M1 2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm9 8h2V4H4v6h2v-2h4z'/%3E%3C/svg%3E");
}
.bi-flask-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 1v-.5a.5.5 0 0 0-1 0V1H6v-.5a.5.5 0 0 0-1 0V1h-.5a1 1 0 0 0-1 1v10.52A2.49 2.49 0 0 0 2 15a2.5 2.5 0 0 0 5 0h.5a2.5 2.5 0 0 0 5 0 2.49 2.49 0 0 0-1.5-2.28V2a1 1 0 0 0-1-1zm-7 9.5V2h8v8.5A2.5 2.5 0 0 0 9.5 13h-.999A2.5 2.5 0 0 0 6 10.5H3z'/%3E%3C/svg%3E");
}
.bi-person-badge-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z'/%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm4 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0m-2 4.273c0 .5.4.727.8.727h8.4c.4 0 .8-.227.8-.727C12 11.5 10.5 10 8 10s-4 1.5-4 3.273'/%3E%3C/svg%3E");
}
.bi-file-earmark-medical-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M8.5 7v1.5H10a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V9.5H6a.5.5 0 0 1 0-1h1.5V7a.5.5 0 0 1 1 0'/%3E%3C/svg%3E");
}
.bi-capsule-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.828 8.9 8.9 1.827a4 4 0 1 1 5.657 5.657l-7.07 7.071A4 4 0 1 1 1.827 8.9Zm9.128.771 2.893-2.893a3 3 0 1 0-4.243-4.242L6.713 5.429z'/%3E%3C/svg%3E");
}
.bi-activity-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2'/%3E%3C/svg%3E");
}
.bi-shield-lock-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.8 11.8 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7 7 0 0 0 1.048-.625 11.8 11.8 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.54 1.54 0 0 0-1.044-1.263 63 63 0 0 0-2.887-.87C9.843.266 8.69 0 8 0m0 5a1.5 1.5 0 0 1 .5 2.915l.385 1.99a.5.5 0 0 1-.491.595h-.788a.5.5 0 0 1-.49-.595l.384-1.99A1.5 1.5 0 0 1 8 5'/%3E%3C/svg%3E");
}
.bi-journal-text-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z'/%3E%3C/svg%3E");
}
.bi-shield-check-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56l.100.028c1.117.31 2.231.667 2.872.874.907.289 1.51 1.04 1.617 1.98.62 4.757-.89 8.36-2.61 10.59a11.7 11.7 0 0 1-2.502 2.441 7 7 0 0 1-1.134.671c-.27.127-.66.26-1.271.26s-1-.133-1.271-.26a7 7 0 0 1-1.134-.671 11.7 11.7 0 0 1-2.502-2.44C1.89 12.05.38 8.447 1 3.69c.107-.94.71-1.69 1.617-1.98.641-.207 1.755-.563 2.872-.874z'/%3E%3Cpath d='M10.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0'/%3E%3C/svg%3E");
}
.bi-clipboard-check-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm-4 1A1.5 1.5 0 0 1 4 1.5h8A1.5 1.5 0 0 1 13.5 3v12A1.5 1.5 0 0 1 12 16.5H4A1.5 1.5 0 0 1 2.5 15zm6.854 5.854-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L6 10.793l2.646-2.647a.5.5 0 0 1 .708.708'/%3E%3C/svg%3E");
}
.bi-gear-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}
.bi-person-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E");
}
.bi-box-arrow-left-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 12.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v2a.5.5 0 0 1-1 0v-2A1.5 1.5 0 0 1 6.5 2h8A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 5 12.5v-2a.5.5 0 0 1 1 0z'/%3E%3Cpath fill-rule='evenodd' d='M.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L1.707 7.5H10.5a.5.5 0 0 1 0 1H1.707l2.147 2.146a.5.5 0 0 1-.708.708z'/%3E%3C/svg%3E");
}
.bi-person-plus-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3Cpath fill-rule='evenodd' d='M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5'/%3E%3C/svg%3E");
}
.bi-heart-pulse-fill-nav-menu[b-zryuqtk4ii] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.475 9C2.702 10.84 4.779 12.855 8 15c3.221-2.145 5.298-4.16 6.525-6H12a.5.5 0 0 1-.464-.314l-1.457-3.642-1.57 6.289A.5.5 0 0 1 8.02 11H8a.5.5 0 0 1-.492-.41L6.239 4.964 5.02 8.314A.5.5 0 0 1 4.5 8.5H1.475Z'/%3E%3Cpath d='M7.519.685a.5.5 0 0 1 .962 0l1.757 5.87 1.622-6.483a.5.5 0 0 1 .968.07L14.5 8.5H16a8 8 0 0 0-16 0h1.5z'/%3E%3C/svg%3E");
}
        height: calc(100vh - 3.5rem);
        overflow-y: auto;[b-zryuqtk4ii]
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-bem274taeu],
.components-reconnect-repeated-attempt-visible[b-bem274taeu],
.components-reconnect-failed-visible[b-bem274taeu],
.components-pause-visible[b-bem274taeu],
.components-resume-failed-visible[b-bem274taeu],
.components-rejoining-animation[b-bem274taeu] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-bem274taeu],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-bem274taeu],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-bem274taeu],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-bem274taeu],
#components-reconnect-modal.components-reconnect-retrying[b-bem274taeu],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-bem274taeu],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-bem274taeu],
#components-reconnect-modal.components-reconnect-failed[b-bem274taeu],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-bem274taeu] {
    display: block;
}


#components-reconnect-modal[b-bem274taeu] {
    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-bem274taeu 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-bem274taeu 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-bem274taeu 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-bem274taeu]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-bem274taeu 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-bem274taeu {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-bem274taeu {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-bem274taeu {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-bem274taeu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-bem274taeu] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-bem274taeu] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-bem274taeu] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-bem274taeu] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-bem274taeu] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-bem274taeu] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-bem274taeu 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-bem274taeu] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-bem274taeu {
    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;
    }
}
