/* /Components/DashboardShared/EntityPickerLanding.razor.rz.scp.css */
/* EntityPickerLanding.razor.css - scoped styles for the entity picker landing page */

.entity-picker-landing[b-qx453jb57x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    background: var(--surface-secondary, #f8f9fa);
}

.entity-picker-header[b-qx453jb57x] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.entity-picker-icon[b-qx453jb57x] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: var(--accent-bg, #e8f0fe);
    color: var(--accent-primary, #4D2EFD);
}

.entity-picker-title[b-qx453jb57x] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary, #1d1d1b);
    margin: 0 0 0.5rem;
}

.entity-picker-subtitle[b-qx453jb57x] {
    font-size: 1rem;
    color: var(--text-secondary, #6b7280);
    margin: 0;
    max-width: 480px;
}

.entity-picker-grid[b-qx453jb57x] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 840px;
}

/* ── Entity card ── */
.entity-card[b-qx453jb57x] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
}

.entity-card:hover[b-qx453jb57x] {
    border-color: var(--accent-primary, #4D2EFD);
    box-shadow: 0 4px 12px rgba(77, 46, 253, 0.1);
    transform: translateY(-1px);
}

.entity-card:active[b-qx453jb57x] {
    transform: translateY(0);
}

.entity-card-icon[b-qx453jb57x] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

.entity-card-icon.district-icon[b-qx453jb57x] {
    background: #fef3c7;
    color: #d97706;
}

.entity-card-icon.institution-icon[b-qx453jb57x] {
    background: #dbeafe;
    color: #2563eb;
}

.entity-card-body[b-qx453jb57x] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.entity-card-name[b-qx453jb57x] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary, #1d1d1b);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entity-card-meta[b-qx453jb57x] {
    font-size: 0.8225rem;
    color: var(--text-secondary, #6b7280);
}

.entity-card-arrow[b-qx453jb57x] {
    flex-shrink: 0;
    color: var(--text-tertiary, #9ca3af);
    transition: color 0.15s, transform 0.15s;
}

.entity-card:hover .entity-card-arrow[b-qx453jb57x] {
    color: var(--accent-primary, #4D2EFD);
    transform: translateX(2px);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .entity-picker-grid[b-qx453jb57x] {
        grid-template-columns: 1fr;
    }

    .entity-picker-landing[b-qx453jb57x] {
        padding: 1.5rem 1rem;
        min-height: 70vh;
    }
}
/* /Components/DashboardShared/EntitySwitcher.razor.rz.scp.css */
/* EntitySwitcher.razor.css - scoped styles for the entity switcher dropdown */

.entity-switcher[b-0xso2kt4zr] {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-light, #e5e7eb);
}

.entity-switcher-btn[b-0xso2kt4zr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0.625rem;
    background: var(--surface-secondary, #f3f4f6);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-family: inherit;
    text-align: left;
}

.entity-switcher-btn:hover[b-0xso2kt4zr] {
    border-color: var(--accent-primary, #4D2EFD);
    background: var(--surface-hover, #f0f0ff);
}

.entity-switcher-current[b-0xso2kt4zr] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
    flex: 1;
}

.entity-switcher-label[b-0xso2kt4zr] {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary, #9ca3af);
}

.entity-switcher-name[b-0xso2kt4zr] {
    font-size: 0.8225rem;
    font-weight: 600;
    color: var(--text-primary, #1d1d1b);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entity-switcher-chevron[b-0xso2kt4zr] {
    flex-shrink: 0;
    color: var(--text-tertiary, #9ca3af);
    transition: transform 0.2s;
}

.entity-switcher-chevron.open[b-0xso2kt4zr] {
    transform: rotate(180deg);
}

/* ── Dropdown menu (positioned via portal, rendered outside sidebar) ── */
.entity-switcher-backdrop[b-0xso2kt4zr] {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.entity-switcher-menu[b-0xso2kt4zr] {
    position: fixed;
    bottom: 110px;
    left: 16px;
    width: 240px;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    padding: 0.25rem 0;
}

.entity-switcher-menu-header[b-0xso2kt4zr] {
    padding: 0.625rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary, #9ca3af);
    border-bottom: 1px solid var(--border-light, #e5e7eb);
}

.entity-switcher-menu-item[b-0xso2kt4zr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-primary, #1d1d1b);
    transition: background 0.1s;
    text-align: left;
}

.entity-switcher-menu-item:hover[b-0xso2kt4zr] {
    background: var(--surface-hover, #f3f4f6);
}

.entity-switcher-menu-item.active[b-0xso2kt4zr] {
    color: var(--accent-primary, #4D2EFD);
    font-weight: 600;
}

.entity-switcher-item-name[b-0xso2kt4zr] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.entity-switcher-check[b-0xso2kt4zr] {
    flex-shrink: 0;
    color: var(--accent-primary, #4D2EFD);
}
/* /Components/DashboardShared/NotificationManagementView.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   NotificationManagementView - component-scoped styles
   Matches the approved notification-management-fluent.html prototype
   ═══════════════════════════════════════════════════════════════ */

/* ── Root wrapper ── */
.nm-content[b-f0sdnbz8j1] {
    padding: 1.5rem 2rem 2rem;
    background: var(--stemwhite);
    border-radius: 14px;
}

/* ── Page Header ── */
.nm-header[b-f0sdnbz8j1] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nm-header-left h2[b-f0sdnbz8j1] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.nm-header-left p[b-f0sdnbz8j1] {
    font-size: 0.82rem;
    color: var(--stemmuted, #667085);
}

.nm-header-actions[b-f0sdnbz8j1] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ── Buttons (nm-btn) ── */
.nm-btn[b-f0sdnbz8j1] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: var(--ea-radius-xl, 20px);
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: 140ms ease;
    border: 1px solid var(--ea-border, #e6e9f2);
    background: #fff;
    color: var(--stemblack, #1b1b1f);
}

.nm-btn svg[b-f0sdnbz8j1] { width: 16px; height: 16px; }
.nm-btn:hover[b-f0sdnbz8j1] { background: #f5f5f5; border-color: #c5c5c5; }

.nm-btn.primary[b-f0sdnbz8j1] {
    background: var(--stemgreen, #7AFDB5);
    color: var(--stemblue, #4D2EFD);
    border-color: var(--stemgreen, #7AFDB5);
}

.nm-btn.primary:hover[b-f0sdnbz8j1] { background: #5dfca0; }

.nm-btn.danger[b-f0sdnbz8j1] {
    color: #e5484d;
    border-color: rgba(229, 72, 77, 0.3);
}

.nm-btn.danger:hover[b-f0sdnbz8j1] { background: rgba(229, 72, 77, 0.06); border-color: #e5484d; }

/* ── Stats Cards ── */
.nm-stats[b-f0sdnbz8j1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nm-stat-card[b-f0sdnbz8j1] {
    background: #fff;
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: border-color 140ms ease, box-shadow 140ms ease;
    cursor: default;
}

.nm-stat-card:hover[b-f0sdnbz8j1] {
    border-color: rgba(77, 46, 253, 0.2);
    box-shadow: 0 4px 12px rgba(77, 46, 253, 0.06);
}

.nm-stat-icon[b-f0sdnbz8j1] {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nm-stat-icon[b-f0sdnbz8j1]  svg { width: 20px; height: 20px; }
.nm-stat-icon.blue[b-f0sdnbz8j1]   { background: rgba(77, 46, 253, 0.10); color: var(--stemblue, #4D2EFD); }
.nm-stat-icon.green[b-f0sdnbz8j1]  { background: rgba(43, 157, 94, 0.10);  color: var(--stemgreen-dark, #2b9d5e); }
.nm-stat-icon.orange[b-f0sdnbz8j1] { background: rgba(254, 146, 13, 0.10); color: var(--stemorange, #FE920D); }
.nm-stat-icon.red[b-f0sdnbz8j1]    { background: rgba(229, 72, 77, 0.10);  color: #e5484d; }

.nm-stat-info[b-f0sdnbz8j1] { flex: 1; min-width: 0; }

.nm-stat-value[b-f0sdnbz8j1] {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--stemblack, #1b1b1f);
}

.nm-stat-label[b-f0sdnbz8j1] {
    font-size: 0.75rem;
    color: var(--stemmuted, #667085);
    font-weight: 500;
}

/* ── Tabs (underline style) ── */
.nm-tabs[b-f0sdnbz8j1] {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--ea-border, #e6e9f2);
    margin-bottom: 1.25rem;
}

.nm-tab[b-f0sdnbz8j1] {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 0.65rem 1.2rem;
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--stemmuted, #667085);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: 140ms ease;
}

.nm-tab svg[b-f0sdnbz8j1] { width: 16px; height: 16px; }
.nm-tab:hover[b-f0sdnbz8j1] { color: var(--stemblack, #1b1b1f); }

.nm-tab.active[b-f0sdnbz8j1] {
    color: var(--stemblue, #4D2EFD);
    border-bottom-color: var(--stemblue, #4D2EFD);
    font-weight: 600;
}

.nm-tab-badge[b-f0sdnbz8j1] {
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: #e5484d;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.nm-tab.active .nm-tab-badge[b-f0sdnbz8j1] { background: var(--stemblue, #4D2EFD); }

/* ── Toolbar ── */
.nm-toolbar[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.nm-search[b-f0sdnbz8j1] {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}

.nm-search input[b-f0sdnbz8j1] {
    width: 100%;
    padding: 0.55rem 0.75rem 0.55rem 2.2rem;
    font-size: 0.85rem;
    font-family: var(--ea-font, 'Poppins', sans-serif);
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: 10px;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s;
}

.nm-search input:focus[b-f0sdnbz8j1] {
    border-color: var(--stemblue, #4D2EFD);
    box-shadow: 0 0 0 3px rgba(77, 46, 253, 0.10);
}

.nm-search-icon[b-f0sdnbz8j1] {
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8a8a;
    pointer-events: none;
    display: flex;
}

.nm-search-icon svg[b-f0sdnbz8j1] { width: 16px; height: 16px; }

/* ── Filter chips ── */
.nm-filter-group[b-f0sdnbz8j1] {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.nm-filter-chip[b-f0sdnbz8j1] {
    background: transparent;
    border: 1px solid var(--ea-border, #e6e9f2);
    color: #5e5e5e;
    cursor: pointer;
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    transition: 140ms ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nm-filter-chip:hover[b-f0sdnbz8j1] { background: #fff; border-color: #c5c5c5; }

.nm-filter-chip.active[b-f0sdnbz8j1] {
    background: var(--stemblue, #4D2EFD);
    color: #fff;
    border-color: var(--stemblue, #4D2EFD);
}

.chip-count[b-f0sdnbz8j1] {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 0 4px;
    border-radius: 8px;
    font-weight: 700;
}

.nm-filter-chip:not(.active) .chip-count[b-f0sdnbz8j1] {
    background: #ebebeb;
    color: #5e5e5e;
}

/* ── Bulk actions ── */
.nm-bulk-actions[b-f0sdnbz8j1] {
    display: flex;
    gap: 0.35rem;
    margin-left: auto;
}

.nm-bulk-btn[b-f0sdnbz8j1] {
    background: transparent;
    border: 1px solid var(--ea-border, #e6e9f2);
    color: var(--stemmuted, #667085);
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: 140ms ease;
}

.nm-bulk-btn svg[b-f0sdnbz8j1] { width: 14px; height: 14px; }
.nm-bulk-btn:hover[b-f0sdnbz8j1] { background: #f5f5f5; border-color: #c5c5c5; }

.nm-bulk-btn.active[b-f0sdnbz8j1] {
    background: rgba(77, 46, 253, 0.10);
    border-color: rgba(77, 46, 253, 0.20);
    color: var(--stemblue, #4D2EFD);
}

/* ── Select bar ── */
.nm-select-bar[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    margin-bottom: 0.75rem;
    background: rgba(77, 46, 253, 0.10);
    border: 1px solid rgba(77, 46, 253, 0.20);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--stemblue, #4D2EFD);
    font-weight: 500;
}

.nm-select-bar .count[b-f0sdnbz8j1] { font-weight: 700; }

.nm-select-bar-actions[b-f0sdnbz8j1] {
    display: flex;
    gap: 0.35rem;
    margin-left: auto;
}

.nm-select-bar-actions button[b-f0sdnbz8j1] {
    background: #fff;
    border: 1px solid rgba(77, 46, 253, 0.20);
    color: var(--stemblue, #4D2EFD);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: 140ms ease;
}

.nm-select-bar-actions button svg[b-f0sdnbz8j1] { width: 13px; height: 13px; }
.nm-select-bar-actions button:hover[b-f0sdnbz8j1] { background: var(--stemblue, #4D2EFD); color: #fff; border-color: var(--stemblue, #4D2EFD); }

.nm-select-bar-actions button.danger[b-f0sdnbz8j1] { color: #e5484d; border-color: rgba(229, 72, 77, 0.3); }
.nm-select-bar-actions button.danger:hover[b-f0sdnbz8j1] { background: #e5484d; color: #fff; border-color: #e5484d; }

/* ── Notification List ── */
.nm-list[b-f0sdnbz8j1] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nm-item[b-f0sdnbz8j1] {
    display: grid;
    grid-template-columns: 36px 36px 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--ea-border, #e6e9f2);
    cursor: pointer;
    transition: background 140ms ease;
    position: relative;
}

.nm-item:last-child[b-f0sdnbz8j1] { border-bottom: none; }
.nm-item:hover[b-f0sdnbz8j1] { background: #f5f5f5; }

/* Read items: de-emphasised grey background */
.nm-item:not(.unread)[b-f0sdnbz8j1] {
    background: #fafafa;
}

/* Unread items: prominent white background, no vertical bar */
.nm-item.unread[b-f0sdnbz8j1] {
    background: #fff;
}

.nm-item.selected[b-f0sdnbz8j1] {
    background: rgba(77, 46, 253, 0.10);
}

/* Checkbox */
.nm-check[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nm-check input[type="checkbox"][b-f0sdnbz8j1] {
    width: 16px;
    height: 16px;
    accent-color: var(--stemblue, #4D2EFD);
    cursor: pointer;
}

/* Item icon */
.nm-item-icon[b-f0sdnbz8j1] {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nm-item-icon[b-f0sdnbz8j1]  svg { width: 18px; height: 18px; }
.nm-item-icon.info[b-f0sdnbz8j1]    { background: rgba(77, 46, 253, 0.10); color: var(--stemblue, #4D2EFD); }
.nm-item-icon.success[b-f0sdnbz8j1] { background: rgba(43, 157, 94, 0.10);  color: var(--stemgreen-dark, #2b9d5e); }
.nm-item-icon.warning[b-f0sdnbz8j1] { background: rgba(254, 146, 13, 0.10); color: var(--stemorange, #FE920D); }
.nm-item-icon.error[b-f0sdnbz8j1]   { background: rgba(229, 72, 77, 0.10);  color: #e5484d; }
.nm-item-icon.pink[b-f0sdnbz8j1]    { background: rgba(240, 79, 205, 0.10); color: var(--stempink, #F04FCD); }

/* Item body */
.nm-item-body[b-f0sdnbz8j1] { min-width: 0; }

.nm-item-title[b-f0sdnbz8j1] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stemblack, #1b1b1f);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nm-item.unread .nm-item-title[b-f0sdnbz8j1] { font-weight: 600; color: var(--stemblack, #1b1b1f); }

.nm-item-desc[b-f0sdnbz8j1] {
    font-size: 0.78rem;
    color: var(--stemmuted, #667085);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tag */
.nm-item-tag[b-f0sdnbz8j1] {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nm-item-tag.assignment[b-f0sdnbz8j1]  { background: rgba(77, 46, 253, 0.10);  color: var(--stemblue, #4D2EFD); }
.nm-item-tag.support[b-f0sdnbz8j1]     { background: rgba(254, 146, 13, 0.10); color: var(--stemorange, #FE920D); }
.nm-item-tag.game[b-f0sdnbz8j1]        { background: rgba(43, 157, 94, 0.10);  color: var(--stemgreen-dark, #2b9d5e); }
.nm-item-tag.system[b-f0sdnbz8j1]      { background: #ebebeb;                   color: #5e5e5e; }
.nm-item-tag.evaluation[b-f0sdnbz8j1]  { background: rgba(240, 79, 205, 0.10); color: var(--stempink, #F04FCD); }

/* Time */
.nm-item-time[b-f0sdnbz8j1] {
    font-size: 0.72rem;
    color: #8a8a8a;
    white-space: nowrap;
    text-align: right;
    min-width: 80px;
}

.nm-item.unread .nm-item-time[b-f0sdnbz8j1] { color: var(--stemblue, #4D2EFD); font-weight: 600; }

.nm-item:not(.unread) .nm-item-title[b-f0sdnbz8j1],
.nm-item:not(.unread) .nm-item-desc[b-f0sdnbz8j1] {
    color: #8a8a8a;
    font-weight: 400;
}

/* Hover actions */
.nm-item-actions[b-f0sdnbz8j1] {
    display: none;
    gap: 0.25rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: 6px;
    padding: 0.2rem;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
}

.nm-item:hover .nm-item-actions[b-f0sdnbz8j1] { display: flex; }

.nm-item-action[b-f0sdnbz8j1] {
    background: transparent;
    border: none;
    color: #5e5e5e;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 100ms ease;
}

.nm-item-action svg[b-f0sdnbz8j1] { width: 14px; height: 14px; }
.nm-item-action:hover[b-f0sdnbz8j1] { background: rgba(77, 46, 253, 0.10); color: var(--stemblue, #4D2EFD); }
.nm-item-action.danger:hover[b-f0sdnbz8j1] { background: rgba(229, 72, 77, 0.08); color: #e5484d; }

/* ── Empty state ── */
.nm-empty[b-f0sdnbz8j1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.nm-empty-icon[b-f0sdnbz8j1] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(77, 46, 253, 0.10);
    color: var(--stemblue, #4D2EFD);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.nm-empty-icon svg[b-f0sdnbz8j1] { width: 30px; height: 30px; }
.nm-empty h3[b-f0sdnbz8j1] { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.nm-empty p[b-f0sdnbz8j1] { font-size: 0.82rem; color: var(--stemmuted, #667085); max-width: 320px; }

/* ── Pagination info ── */
.nm-pagination-info[b-f0sdnbz8j1] {
    font-size: 0.78rem;
    color: var(--stemmuted, #667085);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--ea-border, #e6e9f2);
}

/* ── Loading ── */
.nm-loading[b-f0sdnbz8j1] {
    text-align: center;
    padding: 3rem;
    color: var(--stemmuted, #667085);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   DETAIL SLIDE-OVER PANEL
   Reuses the same pattern as NotificationCenter (Shared)
   ═══════════════════════════════════════════════════════════════ */
@keyframes nmSlideIn-b-f0sdnbz8j1 {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

@keyframes nmFadeIn-b-f0sdnbz8j1 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.notification-overlay[b-f0sdnbz8j1] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 999;
    animation: nmFadeIn-b-f0sdnbz8j1 0.25s ease;
}

.notification-panel[b-f0sdnbz8j1] {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--ea-border, #e6e9f2);
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.14);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    animation: nmSlideIn-b-f0sdnbz8j1 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification-panel.closing[b-f0sdnbz8j1] {
    animation: nmSlideOut-b-f0sdnbz8j1 0.25s ease forwards;
}

.notification-overlay.closing[b-f0sdnbz8j1] {
    animation: nmFadeOut-b-f0sdnbz8j1 0.25s ease forwards;
}

@keyframes nmSlideOut-b-f0sdnbz8j1 {
    from { transform: translateX(0); }
    to   { transform: translateX(100%); }
}

@keyframes nmFadeOut-b-f0sdnbz8j1 {
    from { opacity: 1; }
    to   { opacity: 0; }
}



/* ═══════════════════════════════════════════════════════════════
   PREFERENCES TAB
   ═══════════════════════════════════════════════════════════════ */
.nm-prefs[b-f0sdnbz8j1] { max-width: 720px; }

.nm-pref-section[b-f0sdnbz8j1] {
    margin-bottom: 2rem;
}

.nm-pref-section h3[b-f0sdnbz8j1] {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.nm-pref-section > p[b-f0sdnbz8j1] {
    font-size: 0.8rem;
    color: var(--stemmuted, #667085);
    margin-bottom: 1rem;
}

/* Toggle row */
.nm-pref-row[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--ea-border, #e6e9f2);
}

.nm-pref-row:last-child[b-f0sdnbz8j1] { border-bottom: none; }

.nm-pref-icon[b-f0sdnbz8j1] {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nm-pref-icon[b-f0sdnbz8j1]  svg { width: 18px; height: 18px; }
.nm-pref-icon.blue[b-f0sdnbz8j1]   { background: rgba(77, 46, 253, 0.10); color: var(--stemblue, #4D2EFD); }
.nm-pref-icon.green[b-f0sdnbz8j1]  { background: rgba(43, 157, 94, 0.10);  color: var(--stemgreen-dark, #2b9d5e); }
.nm-pref-icon.orange[b-f0sdnbz8j1] { background: rgba(254, 146, 13, 0.10); color: var(--stemorange, #FE920D); }
.nm-pref-icon.pink[b-f0sdnbz8j1]   { background: rgba(240, 79, 205, 0.10); color: var(--stempink, #F04FCD); }
.nm-pref-icon.gray[b-f0sdnbz8j1]   { background: #ebebeb; color: #5e5e5e; }

.nm-pref-info[b-f0sdnbz8j1] {
    flex: 1;
    min-width: 0;
}

.nm-pref-label[b-f0sdnbz8j1] {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--stemblack, #1b1b1f);
}

.nm-pref-desc[b-f0sdnbz8j1] {
    font-size: 0.75rem;
    color: var(--stemmuted, #667085);
}

/* Channel toggle buttons */
.nm-pref-channels[b-f0sdnbz8j1] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nm-channel-toggle[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 0.72rem;
    font-weight: 500;
    color: #5e5e5e;
    transition: 140ms ease;
}

.nm-channel-toggle svg[b-f0sdnbz8j1] { width: 14px; height: 14px; }
.nm-channel-toggle:hover[b-f0sdnbz8j1] { border-color: #c5c5c5; }

.nm-channel-toggle.on[b-f0sdnbz8j1] {
    background: rgba(77, 46, 253, 0.10);
    border-color: rgba(77, 46, 253, 0.20);
    color: var(--stemblue, #4D2EFD);
}

/* Toggle switch */
.nm-toggle[b-f0sdnbz8j1] {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
    display: inline-block;
}

.nm-toggle input[b-f0sdnbz8j1] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.nm-toggle-track[b-f0sdnbz8j1] {
    position: absolute;
    inset: 0;
    background: #c5c5c5;
    border-radius: 11px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.nm-toggle-track[b-f0sdnbz8j1]::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.nm-toggle input:checked + .nm-toggle-track[b-f0sdnbz8j1] {
    background: var(--stemblue, #4D2EFD);
}

.nm-toggle input:checked + .nm-toggle-track[b-f0sdnbz8j1]::after {
    transform: translateX(18px);
}

/* Quiet hours */
.nm-quiet-hours[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: 10px;
    margin-top: 0.75rem;
}

.nm-quiet-hours-info[b-f0sdnbz8j1] { flex: 1; }

.nm-quiet-hours-label[b-f0sdnbz8j1] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stemblack, #1b1b1f);
}

.nm-quiet-hours-desc[b-f0sdnbz8j1] {
    font-size: 0.75rem;
    color: var(--stemmuted, #667085);
}

.nm-time-inputs[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nm-time-input[b-f0sdnbz8j1] {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: 6px;
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 0.8rem;
    width: 80px;
    text-align: center;
    outline: none;
}

.nm-time-input:focus[b-f0sdnbz8j1] {
    border-color: var(--stemblue, #4D2EFD);
    box-shadow: 0 0 0 3px rgba(77, 46, 253, 0.10);
}

.nm-time-sep[b-f0sdnbz8j1] {
    font-size: 0.8rem;
    color: var(--stemmuted, #667085);
    font-weight: 500;
}

/* Prefs footer */
.nm-prefs-footer[b-f0sdnbz8j1] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nm-saved-msg[b-f0sdnbz8j1] {
    font-size: 0.84rem;
    color: var(--stemgreen-dark, #2b9d5e);
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .nm-stats[b-f0sdnbz8j1] { grid-template-columns: repeat(2, 1fr); }
    .nm-item[b-f0sdnbz8j1] { grid-template-columns: 36px 36px 1fr auto; }
    .nm-item-time[b-f0sdnbz8j1] { display: none; }
}

@media (max-width: 768px) {
    .nm-content[b-f0sdnbz8j1] { padding: 1rem; }
    .nm-stats[b-f0sdnbz8j1] { grid-template-columns: 1fr 1fr; }
    .nm-detail-panel[b-f0sdnbz8j1] { width: 100vw; }
    .nm-toolbar[b-f0sdnbz8j1] { flex-direction: column; align-items: stretch; }
    .nm-search[b-f0sdnbz8j1] { max-width: none; }
    .nm-bulk-actions[b-f0sdnbz8j1] { margin-left: 0; }
}
/* /Components/EducatorAdmin/GameSessionDetailView.razor.rz.scp.css */
/* Game Session Detail — scoped */

[b-szwhedmd6i] .gsd-hero-actions {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

[b-szwhedmd6i] .gsd-id {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: .68rem;
    font-weight: 500;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    padding: .2rem .55rem;
    border-radius: 5px;
}

[b-szwhedmd6i] .gsd-status-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .7rem;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: rgba(255, 255, 255, .2);
    color: #fff;
}
[b-szwhedmd6i] .gsd-status-pill.live { background: var(--stemgreen, #7AFDB5); color: #0a3d22; }
[b-szwhedmd6i] .gsd-status-pill.live .gsd-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #0a3d22;
    animation: gsd-pulse-b-szwhedmd6i 1.5s infinite;
}
[b-szwhedmd6i] .gsd-status-pill.success { background: var(--stemgreen, #7AFDB5); color: #0a3d22; }
[b-szwhedmd6i] .gsd-status-pill.danger { background: rgba(239, 68, 68, .9); }
[b-szwhedmd6i] .gsd-status-pill.info { background: rgba(255, 255, 255, .2); }
[b-szwhedmd6i] .gsd-status-pill.muted { background: rgba(255, 255, 255, .15); }

@keyframes gsd-pulse-b-szwhedmd6i {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* Stat tiles */
[b-szwhedmd6i] .gsd-tiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .75rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 920px) {
    [b-szwhedmd6i] .gsd-tiles { grid-template-columns: repeat(2, 1fr); }
}

[b-szwhedmd6i] .gsd-tile {
    background: #fff;
    border: 1px solid var(--ea-border, #ededf0);
    border-radius: 12px;
    padding: .9rem 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

[b-szwhedmd6i] .gsd-tile-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
[b-szwhedmd6i] .gsd-tile-ico svg { width: 17px; height: 17px; }
[b-szwhedmd6i] .gsd-tile-ico.blue { background: rgba(77, 46, 253, .08); color: var(--stemblue, #4D2EFD); }
[b-szwhedmd6i] .gsd-tile-ico.green { background: rgba(43, 157, 94, .08); color: var(--stemgreen-dark, #2b9d5e); }
[b-szwhedmd6i] .gsd-tile-ico.orange { background: rgba(254, 146, 13, .08); color: var(--stemorange, #FE920D); }
[b-szwhedmd6i] .gsd-tile-ico.pink { background: rgba(240, 79, 205, .08); color: var(--stempink, #F04FCD); }
[b-szwhedmd6i] .gsd-tile-ico.cyan { background: rgba(6, 182, 212, .08); color: #06b6d4; }

[b-szwhedmd6i] .gsd-tile-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 500;
    color: var(--ea-neutral-40, #8e8e99);
}
[b-szwhedmd6i] .gsd-tile-value {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ea-black, #1b1b1f);
}
[b-szwhedmd6i] .gsd-tile-sub {
    font-size: .68rem;
    color: var(--ea-neutral-40, #8e8e99);
    margin-top: .1rem;
}

/* Two-column grid */
[b-szwhedmd6i] .gsd-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.25rem;
}
@media (max-width: 1024px) {
    [b-szwhedmd6i] .gsd-grid { grid-template-columns: 1fr; }
}

/* Card spacing */
[b-szwhedmd6i] .gsd-card { margin-bottom: 1.25rem; }
[b-szwhedmd6i] .gsd-side .gsd-card { margin-bottom: 1rem; }

[b-szwhedmd6i] .gsd-chart-wrap {
    position: relative;
    width: 100%;
}
[b-szwhedmd6i] .gsd-chart-wrap canvas { width: 100% !important; }

/* Empty state */
[b-szwhedmd6i] .gsd-empty {
    padding: 1.25rem;
    text-align: center;
    color: var(--ea-neutral-40, #8e8e99);
    font-size: .82rem;
    background: var(--ea-neutral-5, #fafafa);
    border-radius: 8px;
}

/* Progress rows */
[b-szwhedmd6i] .gsd-progress-row {
    display: grid;
    grid-template-columns: 160px 1fr 50px;
    align-items: center;
    gap: .85rem;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--ea-border-subtle, #f0f0f4);
}
[b-szwhedmd6i] .gsd-progress-row:last-child { border-bottom: none; }
[b-szwhedmd6i] .gsd-progress-label { font-size: .82rem; font-weight: 600; color: var(--ea-black, #1b1b1f); }
[b-szwhedmd6i] .gsd-progress-bar {
    height: 6px;
    background: var(--ea-neutral-10, #ededf0);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}
[b-szwhedmd6i] .gsd-progress-fill { position: absolute; inset: 0 auto 0 0; border-radius: 999px; }
[b-szwhedmd6i] .gsd-progress-pct {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ea-neutral-60, #46464f);
    text-align: right;
}

[b-szwhedmd6i] .gsd-puzzles-head {
    margin-top: 1rem;
    margin-bottom: .5rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ea-neutral-40, #8e8e99);
}

[b-szwhedmd6i] .gsd-puzzles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .55rem;
}
[b-szwhedmd6i] .gsd-puzzle {
    border: 1px solid var(--ea-border, #ededf0);
    border-radius: 8px;
    padding: .55rem .7rem;
    background: var(--ea-neutral-5, #fafafa);
    display: flex;
    align-items: center;
    gap: .55rem;
}
[b-szwhedmd6i] .gsd-puzzle-ico {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
[b-szwhedmd6i] .gsd-puzzle-ico.solved { background: rgba(43, 157, 94, .08); color: var(--stemgreen-dark, #2b9d5e); }
[b-szwhedmd6i] .gsd-puzzle-ico.failed { background: rgba(239, 68, 68, .08); color: #ef4444; }
[b-szwhedmd6i] .gsd-puzzle-ico.attempted { background: rgba(254, 146, 13, .08); color: var(--stemorange, #FE920D); }
[b-szwhedmd6i] .gsd-puzzle-name { font-size: .8rem; font-weight: 600; }
[b-szwhedmd6i] .gsd-puzzle-meta { font-size: .68rem; color: var(--ea-neutral-40, #8e8e99); }

/* Tabs */
[b-szwhedmd6i] .gsd-tabs {
    display: flex;
    gap: .25rem;
    border-bottom: 1px solid var(--ea-border, #ededf0);
    margin-bottom: 1rem;
}
[b-szwhedmd6i] .gsd-tab {
    border: none;
    background: none;
    font-family: inherit;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ea-neutral-40, #8e8e99);
    padding: .55rem .85rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
[b-szwhedmd6i] .gsd-tab:hover { color: var(--stemblue, #4D2EFD); }
[b-szwhedmd6i] .gsd-tab.active {
    color: var(--stemblue, #4D2EFD);
    border-bottom-color: var(--stemblue, #4D2EFD);
}
[b-szwhedmd6i] .gsd-tab-count {
    background: var(--ea-neutral-10, #ededf0);
    color: var(--ea-neutral-60, #46464f);
    font-size: .65rem;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: .35rem;
}

/* Timeline */
[b-szwhedmd6i] .gsd-timeline { position: relative; padding-left: 1.25rem; }
[b-szwhedmd6i] .gsd-timeline::before {
    content: "";
    position: absolute;
    left: 6px; top: 4px; bottom: 4px;
    width: 2px;
    background: var(--ea-border, #ededf0);
}
[b-szwhedmd6i] .gsd-tl-item { position: relative; padding-bottom: 1rem; }
[b-szwhedmd6i] .gsd-tl-item:last-child { padding-bottom: 0; }
[b-szwhedmd6i] .gsd-tl-dot {
    position: absolute;
    left: -1.25rem;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--ea-neutral-30, #b4b4bd);
}
[b-szwhedmd6i] .gsd-tl-dot.start { border-color: var(--stemblue, #4D2EFD); background: var(--stemblue, #4D2EFD); }
[b-szwhedmd6i] .gsd-tl-dot.solve { border-color: var(--stemgreen-dark, #2b9d5e); }
[b-szwhedmd6i] .gsd-tl-dot.hint { border-color: var(--stemorange, #FE920D); }
[b-szwhedmd6i] .gsd-tl-dot.fail { border-color: #ef4444; }
[b-szwhedmd6i] .gsd-tl-time {
    font-size: .7rem;
    color: var(--ea-neutral-40, #8e8e99);
    font-family: "JetBrains Mono", ui-monospace, monospace;
}
[b-szwhedmd6i] .gsd-tl-title {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ea-black, #1b1b1f);
    margin-top: .1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
}
[b-szwhedmd6i] .gsd-tl-target { font-weight: 500; color: var(--ea-neutral-60, #46464f); }
[b-szwhedmd6i] .gsd-tl-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 600;
    padding: .12rem .45rem;
    border-radius: 4px;
}
[b-szwhedmd6i] .gsd-tl-tag.ok { background: rgba(43, 157, 94, .08); color: var(--stemgreen-dark, #2b9d5e); }
[b-szwhedmd6i] .gsd-tl-tag.warn { background: rgba(254, 146, 13, .08); color: var(--stemorange, #FE920D); }
[b-szwhedmd6i] .gsd-tl-tag.bad { background: rgba(239, 68, 68, .08); color: #ef4444; }
[b-szwhedmd6i] .gsd-tl-tag.info { background: rgba(77, 46, 253, .06); color: var(--stemblue, #4D2EFD); }

/* Side meta */
[b-szwhedmd6i] .gsd-kv {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: .35rem .85rem;
    font-size: .78rem;
    margin: 0;
}
[b-szwhedmd6i] .gsd-kv dt { color: var(--ea-neutral-40, #8e8e99); }
[b-szwhedmd6i] .gsd-kv dd { color: var(--ea-black, #1b1b1f); font-weight: 500; word-break: break-word; margin: 0; }
[b-szwhedmd6i] .gsd-kv code {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: .72rem;
    color: var(--ea-neutral-60, #46464f);
    background: var(--ea-neutral-5, #fafafa);
    padding: 1px 5px;
    border-radius: 4px;
}

[b-szwhedmd6i] .gsd-chip {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: 6px;
    background: rgba(77, 46, 253, .06);
    color: var(--stemblue, #4D2EFD);
}
[b-szwhedmd6i] .gsd-chip.green { background: rgba(43, 157, 94, .08); color: var(--stemgreen-dark, #2b9d5e); }
[b-szwhedmd6i] .gsd-chip.orange { background: rgba(254, 146, 13, .08); color: var(--stemorange, #FE920D); }
[b-szwhedmd6i] .gsd-chip.red { background: rgba(239, 68, 68, .08); color: #ef4444; }

/* Raw JSON */
[b-szwhedmd6i] .gsd-raw {
    background: #1b1b1f;
    color: #e9e9ed;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: .72rem;
    padding: .9rem 1.1rem;
    border-radius: 8px;
    overflow: auto;
    max-height: 320px;
    white-space: pre;
}
/* /Components/EducatorAdmin/GameSessionsView.razor.rz.scp.css */
/* ── Game Sessions View — scoped styles ── */
/* Layout grids reuse shared: ea-metrics-grid, la-grid-2, la-period-pills, la-header-actions */

/* ── Chart wrappers ── */
[b-e202xzduwn] .gs-chart-wrap {
    position: relative;
    width: 100%;
}

[b-e202xzduwn] .gs-chart-wrap canvas {
    width: 100% !important;
}

[b-e202xzduwn] .gs-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    color: var(--ea-neutral-40, #9e9e9e);
    font-size: .85rem;
}

/* ── Donut ── */
[b-e202xzduwn] .gs-donut-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

[b-e202xzduwn] .gs-donut-canvas-wrap {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
}

[b-e202xzduwn] .gs-donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

[b-e202xzduwn] .gs-donut-center-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ea-black, #1b1b1f);
    line-height: 1;
}

[b-e202xzduwn] .gs-donut-center-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ea-neutral-40, #9e9e9e);
    margin-top: .25rem;
}

[b-e202xzduwn] .gs-donut-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 0;
}

[b-e202xzduwn] .gs-legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--ea-neutral-60, #6e6e6e);
}

[b-e202xzduwn] .gs-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

[b-e202xzduwn] .gs-legend-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-e202xzduwn] .gs-legend-value {
    margin-left: auto;
    font-weight: 600;
    color: var(--ea-black, #1b1b1f);
    white-space: nowrap;
}

/* ── Heatmap ── */
[b-e202xzduwn] .gs-heatmap-grid {
    display: grid;
    grid-template-columns: 60px repeat(8, 1fr);
    gap: 3px;
    font-size: .7rem;
}

[b-e202xzduwn] .gs-heatmap-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--ea-neutral-40, #9e9e9e);
    font-size: .68rem;
}

[b-e202xzduwn] .gs-heatmap-header {
    text-align: center;
    font-weight: 600;
    color: var(--ea-neutral-40, #9e9e9e);
    font-size: .68rem;
    padding-bottom: 4px;
}

[b-e202xzduwn] .gs-heatmap-cell {
    aspect-ratio: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .65rem;
    color: transparent;
    transition: all .2s;
    cursor: default;
}

[b-e202xzduwn] .gs-heatmap-cell:hover {
    color: var(--ea-black, #1b1b1f);
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .07);
}

/* ── Tabs ── */
[b-e202xzduwn] .gs-tabs {
    display: flex;
    gap: .25rem;
    padding: .65rem .85rem 0;
    border-bottom: 1px solid var(--ea-border, #e6e9f0);
}

[b-e202xzduwn] .gs-tab {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ea-neutral-40, #9e9e9e);
    padding: .5rem .85rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .15s, border-color .15s;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

[b-e202xzduwn] .gs-tab:hover {
    color: var(--stemblue, #4D2EFD);
}

[b-e202xzduwn] .gs-tab.active {
    color: var(--stemblue, #4D2EFD);
    border-bottom-color: var(--stemblue, #4D2EFD);
}

[b-e202xzduwn] .gs-tab-count {
    background: var(--ea-neutral-10, #ededf0);
    color: var(--ea-neutral-60, #6e6e6e);
    font-size: .7rem;
    padding: .1rem .45rem;
    border-radius: 999px;
    font-weight: 700;
}

[b-e202xzduwn] .gs-tab.active .gs-tab-count {
    background: rgba(77, 46, 253, .12);
    color: var(--stemblue, #4D2EFD);
}

/* ── Data table ── */
[b-e202xzduwn] .gs-table-card .ea-card-body {
    padding: 0;
}

[b-e202xzduwn] .gs-table-scroll {
    overflow-x: auto;
}

[b-e202xzduwn] .gs-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .82rem;
}

[b-e202xzduwn] .gs-data-table th {
    text-align: left;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ea-neutral-60, #6e6e6e);
    padding: .65rem .85rem;
    border-bottom: 2px solid var(--ea-border, #e6e9f0);
    background: var(--ea-neutral-2, #fafafa);
    white-space: nowrap;
}

[b-e202xzduwn] .gs-data-table td {
    padding: .7rem .85rem;
    border-bottom: 1px solid var(--ea-border-subtle, #f0f0f4);
    vertical-align: middle;
}

[b-e202xzduwn] .gs-data-table tr:last-child td {
    border-bottom: none;
}

[b-e202xzduwn] .gs-data-table tbody tr {
    transition: background 80ms;
}

[b-e202xzduwn] .gs-data-table tbody tr:hover {
    background: var(--ea-blue-10, #efecff);
}

[b-e202xzduwn] .gs-data-table tbody tr.gs-row-clickable {
    cursor: pointer;
}

[b-e202xzduwn] .gs-cell-strong {
    font-weight: 600;
    color: var(--ea-black, #1b1b1f);
}

[b-e202xzduwn] .gs-cell-sub {
    font-size: .7rem;
    color: var(--ea-neutral-40, #9e9e9e);
    margin-top: 2px;
}

[b-e202xzduwn] .gs-empty-row {
    text-align: center;
    color: var(--ea-neutral-40, #9e9e9e);
    padding: 2rem 1rem !important;
    font-style: italic;
}

/* ── Badges ── */
[b-e202xzduwn] .gs-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .02em;
}

[b-e202xzduwn] .gs-badge-success { background: #ecfdf5; color: #065f46; }
[b-e202xzduwn] .gs-badge-danger  { background: #fef2f2; color: #991b1b; }
[b-e202xzduwn] .gs-badge-info    { background: rgba(77,46,253,.08); color: var(--stemblue, #4D2EFD); }
[b-e202xzduwn] .gs-badge-muted   { background: var(--ea-neutral-10, #ededf0); color: var(--ea-neutral-60, #6e6e6e); }
[b-e202xzduwn] .gs-badge-anon    { background: rgba(254,146,13,.10); color: var(--stemorange, #FE920D); }

/* ── Progress bars ── */
[b-e202xzduwn] .gs-progress-bar {
    width: 100%;
    max-width: 110px;
    height: 6px;
    background: var(--ea-neutral-10, #e1e1e1);
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: .4rem;
}

[b-e202xzduwn] .gs-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .5s ease;
}

[b-e202xzduwn] .gs-pct-label {
    font-weight: 600;
    font-size: .76rem;
}

[b-e202xzduwn] .gs-build {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: .72rem;
    background: var(--ea-neutral-2, #fafafa);
    padding: .15rem .4rem;
    border-radius: 4px;
    color: var(--ea-neutral-60, #6e6e6e);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    [b-e202xzduwn] .gs-donut-wrap {
        flex-direction: column;
    }

    [b-e202xzduwn] .gs-heatmap-grid {
        grid-template-columns: 50px repeat(8, 1fr);
        font-size: .6rem;
    }
}
/* /Components/EducatorAdmin/UserAnalyticsView.razor.rz.scp.css */
/* ── User Analytics View - scoped styles ── */
/* Layout grids use shared: ea-metrics-grid, la-grid-2, la-period-pills */
[b-isw3szu6ks] .ua-tables-section { margin-top: 1.75rem;}
[b-isw3szu6ks] .ea-card ua-table-card { margin-top: 1.75rem;}
/* ── Chart containers ── */
[b-isw3szu6ks] .ua-chart-wrap {
    position: relative;
    width: 100%;
}

[b-isw3szu6ks] .ua-chart-wrap canvas {
    width: 100% !important;
}

/* ── Donut layout ── */
[b-isw3szu6ks] .ua-donut-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

[b-isw3szu6ks] .ua-donut-canvas-wrap {
    width: 190px;
    height: 190px;
    flex-shrink: 0;
}

[b-isw3szu6ks] .ua-donut-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

/* ── Heatmap (9 hour columns) ── */
[b-isw3szu6ks] .ua-heatmap-grid {
    display: grid;
    grid-template-columns: 60px repeat(9, 1fr);
    gap: 3px;
    font-size: .7rem;
}

[b-isw3szu6ks] .ua-heatmap-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--ea-neutral-40, #9e9e9e);
    font-size: .68rem;
}

[b-isw3szu6ks] .ua-heatmap-header {
    text-align: center;
    font-weight: 600;
    color: var(--ea-neutral-40, #9e9e9e);
    font-size: .68rem;
    padding-bottom: 4px;
}

[b-isw3szu6ks] .ua-heatmap-cell {
    aspect-ratio: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .65rem;
    color: transparent;
    transition: all .2s;
    cursor: default;
}

[b-isw3szu6ks] .ua-heatmap-cell:hover {
    color: var(--ea-black, #1b1b1f);
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .07);
}

/* ── User cell (avatar + name) ── */
[b-isw3szu6ks] .ua-user-cell {
    display: flex;
    align-items: center;
    gap: .65rem;
}

[b-isw3szu6ks] .ua-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* ── Status dot ── */
[b-isw3szu6ks] .ua-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: .35rem;
    vertical-align: middle;
}

[b-isw3szu6ks] .ua-status-dot.online {
    background: #22c55e;
}

[b-isw3szu6ks] .ua-status-dot.offline {
    background: #d1d5db;
}

/* ── Table card body flush ── */
[b-isw3szu6ks] .ua-table-card .ea-card-body {
    padding: 0;
}

/* ── Tables section spacing ── */
[b-isw3szu6ks] .ua-tables-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Data table (shared patterns) ── */
[b-isw3szu6ks] .ga-table-scroll {
    overflow-x: auto;
}

[b-isw3szu6ks] .ga-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .84rem;
}

[b-isw3szu6ks] .ga-data-table th {
    text-align: left;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ea-neutral-60, #6e6e6e);
    padding: .65rem .85rem;
    border-bottom: 2px solid var(--ea-border, #e6e9f0);
    background: var(--ea-neutral-2, #fafafa);
    position: sticky;
    top: 0;
    z-index: 1;
    white-space: nowrap;
}

[b-isw3szu6ks] .ga-data-table td {
    padding: .7rem .85rem;
    border-bottom: 1px solid var(--ea-border-subtle, #f0f0f4);
    vertical-align: middle;
}

[b-isw3szu6ks] .ga-data-table tr:last-child td {
    border-bottom: none;
}

[b-isw3szu6ks] .ga-data-table tbody tr {
    transition: background 80ms;
}

[b-isw3szu6ks] .ga-data-table tbody tr:hover {
    background: var(--ea-blue-10, #efecff);
}

[b-isw3szu6ks] .ga-game-title {
    font-weight: 600;
    color: var(--ea-black, #1b1b1f);
}

[b-isw3szu6ks] .ga-game-subject {
    font-size: .68rem;
    color: var(--ea-neutral-40, #9e9e9e);
}

[b-isw3szu6ks] .ga-progress-bar {
    width: 100%;
    max-width: 120px;
    height: 6px;
    background: var(--ea-neutral-10, #e1e1e1);
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: .4rem;
}

[b-isw3szu6ks] .ga-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .5s ease;
}

[b-isw3szu6ks] .ga-pct-label {
    font-weight: 600;
    font-size: .78rem;
}

[b-isw3szu6ks] .ga-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
}

[b-isw3szu6ks] .ga-badge-success {
    background: #ecfdf5;
    color: #065f46;
}

[b-isw3szu6ks] .ga-badge-warning {
    background: #fffbeb;
    color: #92400e;
}

[b-isw3szu6ks] .ga-legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--ea-neutral-60, #6e6e6e);
}

[b-isw3szu6ks] .ga-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

[b-isw3szu6ks] .ga-legend-value {
    margin-left: auto;
    font-weight: 600;
    color: var(--ea-black, #1b1b1f);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    [b-isw3szu6ks] .ua-donut-wrap {
        flex-direction: column;
    }
}
/* /Components/ForgotPasswordForm.razor.rz.scp.css */
/* ── Step indicator ── */
.fp-steps[b-r3wm8ks9yy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.fp-step[b-r3wm8ks9yy] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    background: #d1d5db;
    color: #fff;
    transition: all 0.2s ease;
}

.fp-step.active[b-r3wm8ks9yy] {
    background: var(--stemblue);
    color: #fff;
}

.fp-step-line[b-r3wm8ks9yy] {
    width: 40px;
    height: 2px;
    background: #d1d5db;
    transition: background 0.2s ease;
}

.fp-step-line.active[b-r3wm8ks9yy] {
    background: var(--stemblue);
}

/* ── Code input ── */
.fp-code-input[b-r3wm8ks9yy] {
    text-align: center;
    letter-spacing: 0.5rem;
    font-size: 1.4rem !important;
    font-family: monospace;
}

/* ── Resend row ── */
.fp-resend-row[b-r3wm8ks9yy] {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.fp-resend-link[b-r3wm8ks9yy] {
    color: var(--stemblue);
    cursor: pointer;
    text-decoration: underline;
}

.fp-resend-link:hover[b-r3wm8ks9yy] {
    opacity: 0.8;
}

.fp-resend-timer[b-r3wm8ks9yy] {
    color: var(--copy);
}

/* ── Back link ── */
.fp-back-link[b-r3wm8ks9yy] {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.fp-back-link a[b-r3wm8ks9yy] {
    color: var(--copy);
    text-decoration: none;
}

.fp-back-link a:hover[b-r3wm8ks9yy] {
    color: var(--stemblue);
    text-decoration: underline;
}

/* ── Success state ── */
.fp-success[b-r3wm8ks9yy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0;
}

/* ── Password strength bar ── */
.fp-strength[b-r3wm8ks9yy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0 0.75rem;
    width: 100%;
}

.fp-strength-bar[b-r3wm8ks9yy] {
    flex: 1;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    overflow: hidden;
}

.fp-strength-fill[b-r3wm8ks9yy] {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

.fp-strength-label[b-r3wm8ks9yy] {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.fp-strength-weak[b-r3wm8ks9yy]  { background: var(--stemorange); color: var(--stemorange); }
.fp-strength-fair[b-r3wm8ks9yy]   { background: var(--stempink); color: var(--stempink); }
.fp-strength-good[b-r3wm8ks9yy]   { background: var(--stemblue); color: var(--stemblue); }
.fp-strength-strong[b-r3wm8ks9yy]  { background: var(--stemgreen); color: var(--stemgreen); }
/* /Components/Games/TellUsModal.razor.rz.scp.css */
/* Dialog-level overrides are in site.css (.modal-dialog.tell-us-modal-dialog) */

.tell-us-modal[b-3d28smx8dr] {
    position: relative;
    overflow: hidden;
    padding: 2rem 2rem 1.75rem;
}

/* Stationery triangle decoration */
.tell-us-tri-layer[b-3d28smx8dr] {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
    overflow: hidden;
}

.tell-us-tri-layer svg[b-3d28smx8dr] {
    width: 100%;
    height: 100%;
}

/* Header */
.tell-us-header[b-3d28smx8dr] {
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.tell-us-icon-wrap[b-3d28smx8dr] {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--stemblue-10, #F1EEFF);
    display: grid;
    place-items: center;
    margin-bottom: 0.75rem;
}

.tell-us-icon-wrap svg[b-3d28smx8dr] {
    width: 22px;
    height: 22px;
    color: var(--stemblue, #4D2EFD);
}

.tell-us-modal h2[b-3d28smx8dr] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tell-us-desc[b-3d28smx8dr] {
    font-size: 0.82rem;
    color: var(--muted, #667085);
    line-height: 1.5;
}

/* Form */
.tell-us-form[b-3d28smx8dr] {
    position: relative;
    z-index: 1;
}

.tell-us-form-row[b-3d28smx8dr] {
    display: flex;
    gap: 0.75rem;
}

.tell-us-form-row .tell-us-form-group[b-3d28smx8dr] {
    flex: 1;
}

.tell-us-form-group[b-3d28smx8dr] {
    margin-bottom: 1rem;
}

.tell-us-form-group label[b-3d28smx8dr] {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.tell-us-optional[b-3d28smx8dr] {
    font-weight: 400;
    color: var(--muted, #667085);
}

.tell-us-span[b-3d28smx8dr] {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.tell-us-form .scgSelectButtonContainer[b-3d28smx8dr] {
    margin-bottom: 0;
}

/* Pills + Message side by side */
.tell-us-pills-row[b-3d28smx8dr] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tell-us-pills-col[b-3d28smx8dr] {
    flex: 1;
    min-width: 0;
}

.tell-us-msg-col[b-3d28smx8dr] {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.tell-us-msg-col textarea.scgInput[b-3d28smx8dr] {
    height: 100%;
    min-height: 100px;
}

.tell-us-form textarea.scgInput[b-3d28smx8dr] {
    resize: vertical;
    min-height: 70px;
}

/* Success state */
.tell-us-success[b-3d28smx8dr] {
    text-align: center;
    padding: 2rem 1rem;
}

.tell-us-check[b-3d28smx8dr] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--stemgreen, #7AFDB5);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
}

.tell-us-success h2[b-3d28smx8dr] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tell-us-success p[b-3d28smx8dr] {
    font-size: 0.88rem;
    color: var(--muted, #667085);
    line-height: 1.5;
}

@media (max-width: 520px) {
    .tell-us-form-row[b-3d28smx8dr] {
        flex-direction: column;
        gap: 0;
    }

    .tell-us-pills-row[b-3d28smx8dr] {
        flex-direction: column;
        gap: 0;
    }

    .tell-us-msg-col[b-3d28smx8dr] {
        margin-bottom: 1rem;
    }
}
/* /Components/Layout/DashboardLayout.razor.rz.scp.css */
#blazor-error-ui[b-vx05y0qi31] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-vx05y0qi31] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-u2r96y1gva] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.sidebar[b-u2r96y1gva] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-u2r96y1gva] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-u2r96y1gva]  a, .top-row[b-u2r96y1gva]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-u2r96y1gva]  a:hover, .top-row[b-u2r96y1gva]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-u2r96y1gva]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-u2r96y1gva] {
        justify-content: space-between;
    }

    .top-row[b-u2r96y1gva]  a, .top-row[b-u2r96y1gva]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-u2r96y1gva] {
        flex-direction: row;
    }

    .sidebar[b-u2r96y1gva] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-u2r96y1gva] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-u2r96y1gva]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-u2r96y1gva], article[b-u2r96y1gva] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

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

    #blazor-error-ui .dismiss[b-u2r96y1gva] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    #blazor-error-ui .reload[b-u2r96y1gva] {
        color: #1a0066;
        text-decoration: underline;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xktqb5zdeb] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-xktqb5zdeb] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-xktqb5zdeb] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xktqb5zdeb] {
    font-size: 1.1rem;
}

.bi[b-xktqb5zdeb] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-xktqb5zdeb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' 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-plus-square-fill-nav-menu[b-xktqb5zdeb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xktqb5zdeb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-xktqb5zdeb] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xktqb5zdeb] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xktqb5zdeb] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xktqb5zdeb]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-xktqb5zdeb]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-xktqb5zdeb]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-xktqb5zdeb] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-xktqb5zdeb] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xktqb5zdeb] {
        display: none;
    }

    .nav-scrollable[b-xktqb5zdeb] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/UserMainLayout.razor.rz.scp.css */
.page[b-d7jobj5n85] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.sidebar[b-d7jobj5n85] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-d7jobj5n85] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-d7jobj5n85]  a, .top-row[b-d7jobj5n85]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-d7jobj5n85]  a:hover, .top-row[b-d7jobj5n85]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-d7jobj5n85]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-d7jobj5n85] {
        justify-content: space-between;
    }

    .top-row[b-d7jobj5n85]  a, .top-row[b-d7jobj5n85]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-d7jobj5n85] {
        flex-direction: row;
    }

    .sidebar[b-d7jobj5n85] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-d7jobj5n85] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-d7jobj5n85]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-d7jobj5n85], article[b-d7jobj5n85] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

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

    #blazor-error-ui .dismiss[b-d7jobj5n85] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/MultimediaContent.razor.rz.scp.css */
/* Multimedia Container */
.multimedia-container[b-jkfjqjnvmc] {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: transparent;
}

/* Make container maintain aspect ratio (16:9 default) */
.multimedia-container.aspect-16-9[b-jkfjqjnvmc] {
    aspect-ratio: 16 / 9;
}

.multimedia-container.aspect-4-3[b-jkfjqjnvmc] {
    aspect-ratio: 4 / 3;
}

.multimedia-container.aspect-1-1[b-jkfjqjnvmc] {
    aspect-ratio: 1 / 1;
}

/* Multimedia Content Styles */
.multimedia-content[b-jkfjqjnvmc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.multimedia-content.contain[b-jkfjqjnvmc] {
    object-fit: contain;
}

.multimedia-content.fill[b-jkfjqjnvmc] {
    object-fit: fill;
}

/* Placeholder Styles - used as blur-up base layer */
.multimedia-placeholder[b-jkfjqjnvmc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulse-b-jkfjqjnvmc {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Error State */
.multimedia-error[b-jkfjqjnvmc] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

/* Responsive Video */
video.multimedia-content[b-jkfjqjnvmc] {
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .multimedia-container[b-jkfjqjnvmc] {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .multimedia-container[b-jkfjqjnvmc] {
        max-height: 300px;
    }
}

/* Optional: Round corners */
.multimedia-container.rounded[b-jkfjqjnvmc] {
    border-radius: 8px;
}

.multimedia-container.rounded-lg[b-jkfjqjnvmc] {
    border-radius: 16px;
}

/* Optional: Add shadow */
.multimedia-container.shadow[b-jkfjqjnvmc] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.multimedia-container.shadow-lg[b-jkfjqjnvmc] {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* /Components/Pages/AdminBetaRequests.razor.rz.scp.css */
.admin-beta-requests[b-ydaj494ohj] {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.management-header[b-ydaj494ohj] {
    margin-bottom: 2rem;
}

.header-content h1[b-ydaj494ohj] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--stemblue);
    margin: 0 0 0.5rem 0;
}

.header-subtitle[b-ydaj494ohj] {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Statistics Grid */
.dashboard-stats-grid[b-ydaj494ohj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modern-stat-card[b-ydaj494ohj] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.modern-stat-card:hover[b-ydaj494ohj] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.stat-card-header[b-ydaj494ohj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-icon-container[b-ydaj494ohj] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-requests .stat-icon-container[b-ydaj494ohj] {
    background: linear-gradient(135deg, var(--stemblue) 0%, #6b46ff 100%);
}

.pending-requests .stat-icon-container[b-ydaj494ohj] {
    background: linear-gradient(135deg, var(--stemorange) 0%, #ff9f3d 100%);
}

.accepted-requests .stat-icon-container[b-ydaj494ohj] {
    background: linear-gradient(135deg, var(--stemgreen) 0%, #5de09a 100%);
}

.rejected-requests .stat-icon-container[b-ydaj494ohj] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.stat-icon[b-ydaj494ohj] {
    color: white;
    font-size: 1.5rem;
}

.stat-trend[b-ydaj494ohj] {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.stat-trend.positive[b-ydaj494ohj] {
    background: rgba(122, 253, 181, 0.2);
    color: #22c55e;
}

.stat-trend.neutral[b-ydaj494ohj] {
    background: rgba(254, 146, 13, 0.2);
    color: var(--stemorange);
}

.stat-content[b-ydaj494ohj] {
    text-align: left;
}

.stat-number[b-ydaj494ohj] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label[b-ydaj494ohj] {
    font-size: 1rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.25rem;
}

.stat-description[b-ydaj494ohj] {
    font-size: 0.875rem;
    color: #999;
}

/* List Container */
.beta-list-container[b-ydaj494ohj] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.list-header[b-ydaj494ohj] {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-section[b-ydaj494ohj] {
    flex: 1;
    min-width: 250px;
}

.search-input[b-ydaj494ohj] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
}

.filter-section[b-ydaj494ohj] {
    display: flex;
    gap: 0.75rem;
}

/* Table Styles */
.beta-table[b-ydaj494ohj] {
    width: 100%;
}

.table-header[b-ydaj494ohj] {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr 1.5fr 0.8fr 1fr 0.8fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row[b-ydaj494ohj] {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr 1.5fr 0.8fr 1fr 0.8fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
    transition: background-color 0.2s;
}

.table-row:hover[b-ydaj494ohj] {
    background: #f9fafb;
}

.request-name[b-ydaj494ohj] {
    font-weight: 600;
    color: #1a1a1a;
}

.col-email[b-ydaj494ohj] {
    color: #6b7280;
    font-size: 0.875rem;
    word-break: break-all;
}

.role-badge[b-ydaj494ohj] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--stemblue) 0%, #6b46ff 100%);
    color: white;
    border-radius: 12px;
    font-size: .8225rem;
    font-weight: 600;
}

.role-more[b-ydaj494ohj] {
    margin-left: 0.5rem;
    font-size: .8225rem;
    color: #6b7280;
}

.interest-tag[b-ydaj494ohj] {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 6px;
    font-size: .8225rem;
}

.interest-more[b-ydaj494ohj] {
    margin-left: 0.5rem;
    font-size: .8225rem;
    color: #9ca3af;
}

.status-badge[b-ydaj494ohj] {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: .8225rem;
    font-weight: 600;
    text-transform: capitalize;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-badge.pending[b-ydaj494ohj] {
    background: rgba(254, 146, 13, 0.15);
    color: var(--stemorange);
}

.status-badge.accepted[b-ydaj494ohj] {
    background: rgba(122, 253, 181, 0.15);
    color: #16a34a;
}

.status-badge.rejected[b-ydaj494ohj] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.invite-status-badge[b-ydaj494ohj] {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: .8225rem;
    font-weight: 600;
    text-transform: capitalize;
}

.invite-status-badge.verified[b-ydaj494ohj] {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.invite-status-badge.valid[b-ydaj494ohj] {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.invite-status-badge.expired[b-ydaj494ohj] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.invite-status-badge.no-invite[b-ydaj494ohj] {
    background: transparent;
    color: #9ca3af;
    padding: 0;
}

.col-date[b-ydaj494ohj] {
    font-size: 0.875rem;
    color: #6b7280;
}

.col-actions[b-ydaj494ohj] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.action-btn[b-ydaj494ohj] {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.view-btn[b-ydaj494ohj] {
    background: #f3f4f6;
    color: #4b5563;
}

.view-btn:hover[b-ydaj494ohj] {
    background: #e5e7eb;
    color: var(--stemblue);
}

.accept-btn[b-ydaj494ohj] {
    background: rgba(122, 253, 181, 0.15);
    color: #16a34a;
}

.accept-btn:hover[b-ydaj494ohj] {
    background: rgba(122, 253, 181, 0.3);
}

.reject-btn[b-ydaj494ohj] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.reject-btn:hover[b-ydaj494ohj] {
    background: rgba(239, 68, 68, 0.25);
}

/* Pagination */
.pagination-container[b-ydaj494ohj] {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info[b-ydaj494ohj] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.pagination-controls[b-ydaj494ohj] {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn[b-ydaj494ohj] {
    padding: 0.5rem 0.75rem;
    min-width: 36px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #4b5563;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled)[b-ydaj494ohj] {
    background: var(--stemblue);
    color: white;
    border-color: var(--stemblue);
}

.pagination-btn.active[b-ydaj494ohj] {
    background: var(--stemblue);
    color: white;
    border-color: var(--stemblue);
}

.pagination-btn:disabled[b-ydaj494ohj] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Empty State */
.empty-state[b-ydaj494ohj] {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-icon[b-ydaj494ohj] {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state h3[b-ydaj494ohj] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-ydaj494ohj] {
    color: #9ca3af;
    margin: 0;
}

/* Modal Styles */
.beta-detail-modal[b-ydaj494ohj] {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 5vh auto;
    position: relative;
}

.modal-header[b-ydaj494ohj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.modal-header h2[b-ydaj494ohj] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.close-btn[b-ydaj494ohj] {
    width: 32px;
    height: 32px;
    border: none;
    background: #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #6b7280;
}

.close-btn:hover[b-ydaj494ohj] {
    background: #d1d5db;
    color: #374151;
}

.modal-body[b-ydaj494ohj] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.info-section[b-ydaj494ohj] {
    margin-bottom: 1.5rem;
}

.info-section:last-child[b-ydaj494ohj] {
    margin-bottom: 0;
}

.info-section h4[b-ydaj494ohj] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-row[b-ydaj494ohj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-row:last-child[b-ydaj494ohj] {
    border-bottom: none;
}

.info-label[b-ydaj494ohj] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    min-width: 100px;
}

.info-value[b-ydaj494ohj] {
    font-size: 0.875rem;
    color: #1f2937;
    text-align: right;
    word-break: break-word;
}

.info-value.code[b-ydaj494ohj] {
    font-family: monospace;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: .8225rem;
}

.simple-tags[b-ydaj494ohj] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.simple-tag[b-ydaj494ohj] {
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    border-radius: 16px;
    font-size: .8225rem;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.modal-footer[b-ydaj494ohj] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #f9fafb;
}

/* Loading State */
.stats-loading[b-ydaj494ohj] {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .table-header[b-ydaj494ohj],
    .table-row[b-ydaj494ohj] {
        grid-template-columns: 1.5fr 2fr 1fr 0.8fr 1fr 0.8fr 1fr;
    }
    
    .col-interests[b-ydaj494ohj] {
        display: none;
    }
}

@media (max-width: 900px) {
    .admin-beta-requests[b-ydaj494ohj] {
        padding: 1rem;
    }
    
    .dashboard-stats-grid[b-ydaj494ohj] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header[b-ydaj494ohj],
    .table-row[b-ydaj494ohj] {
        grid-template-columns: 1fr 1.5fr 0.8fr 1fr 1fr;
    }
    
    .col-role[b-ydaj494ohj],
    .col-date[b-ydaj494ohj] {
        display: none;
    }
}

@media (max-width: 640px) {
    .dashboard-stats-grid[b-ydaj494ohj] {
        grid-template-columns: 1fr;
    }
    
    .list-header[b-ydaj494ohj] {
        flex-direction: column;
    }
    
    .search-section[b-ydaj494ohj],
    .filter-section[b-ydaj494ohj] {
        width: 100%;
    }
    
    .filter-section[b-ydaj494ohj] {
        flex-direction: column;
    }
    
    .table-header[b-ydaj494ohj] {
        display: none;
    }
    
    .table-row[b-ydaj494ohj] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .col-name[b-ydaj494ohj],
    .col-email[b-ydaj494ohj],
    .col-status[b-ydaj494ohj],
    .col-actions[b-ydaj494ohj] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .col-name[b-ydaj494ohj]::before,
    .col-email[b-ydaj494ohj]::before,
    .col-status[b-ydaj494ohj]::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
        font-size: .8225rem;
    }
    
    .pagination-container[b-ydaj494ohj] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination-info[b-ydaj494ohj] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination-controls[b-ydaj494ohj] {
        justify-content: center;
    }
    
    .beta-detail-modal[b-ydaj494ohj] {
        width: 95vw;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-header[b-ydaj494ohj],
    .modal-body[b-ydaj494ohj],
    .modal-footer[b-ydaj494ohj] {
        padding: 1rem;
    }
    
    .info-row[b-ydaj494ohj] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-label[b-ydaj494ohj] {
        min-width: auto;
        font-weight: 600;
    }
    
    .info-value[b-ydaj494ohj] {
        text-align: left;
    }
}
/* /Components/Pages/AdminNewsletterEditor.razor.rz.scp.css */
/* ─── Newsletter Editor scoped styles ─── */

.nl-editor[b-417g8iw8z7] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* ─── Header ─── */
.nl-editor-header[b-417g8iw8z7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(77, 46, 253, 0.06);
    border: 1px solid rgba(77, 46, 253, 0.08);
}

.nl-editor-header-left[b-417g8iw8z7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nl-editor-header-left h1[b-417g8iw8z7] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stemblue, #4D2EFD);
    font-family: 'Poppins', sans-serif;
}

.nl-back-btn[b-417g8iw8z7] {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(77, 46, 253, 0.15);
    background: white;
    border-radius: 0.5rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--stemblue, #4D2EFD);
    transition: all 0.15s ease;
}

.nl-back-btn:hover[b-417g8iw8z7] {
    background: rgba(77, 46, 253, 0.05);
}

.nl-editor-header-actions[b-417g8iw8z7] {
    display: flex;
    gap: 0.5rem;
}

/* ─── Two Column Layout ─── */
.nl-editor-layout[b-417g8iw8z7] {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
}

/* ─── Editor Card ─── */
.nl-editor-card[b-417g8iw8z7] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(77, 46, 253, 0.06);
    border: 1px solid rgba(77, 46, 253, 0.08);
    padding: 1.5rem;
}

.nl-form-field[b-417g8iw8z7] { margin-bottom: 1.25rem; }

.nl-form-label[b-417g8iw8z7] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
    font-family: 'Poppins', sans-serif;
}

.nl-form-input[b-417g8iw8z7] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid rgba(77, 46, 253, 0.1);
    border-radius: 0.625rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.15s ease;
    background: white;
}

.nl-form-input:focus[b-417g8iw8z7] {
    outline: none;
    border-color: var(--stemblue, #4D2EFD);
    box-shadow: 0 0 0 3px rgba(77, 46, 253, 0.1);
}

.nl-form-input-subject[b-417g8iw8z7] { font-size: 1.1rem; font-weight: 600; }

.nl-form-hint[b-417g8iw8z7] {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.nl-form-select[b-417g8iw8z7] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 2px solid rgba(77, 46, 253, 0.1);
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    background: white;
    color: #374151;
    cursor: pointer;
}

/* ─── Sidebar Cards ─── */
.nl-editor-sidebar[b-417g8iw8z7] { display: flex; flex-direction: column; gap: 1rem; }

.nl-sidebar-card[b-417g8iw8z7] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(77, 46, 253, 0.06);
    border: 1px solid rgba(77, 46, 253, 0.08);
    overflow: hidden;
}

.nl-sidebar-card-header[b-417g8iw8z7] {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(77, 46, 253, 0.06);
}

.nl-sidebar-card-header h3[b-417g8iw8z7] {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--stemblue, #4D2EFD);
    font-family: 'Poppins', sans-serif;
}

.nl-sidebar-card-body[b-417g8iw8z7] { padding: 1rem 1.25rem; }

/* ─── Toggle Switch ─── */
.nl-toggle-row[b-417g8iw8z7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.nl-toggle-label[b-417g8iw8z7] { font-size: 0.85rem; color: #374151; }

.nl-toggle[b-417g8iw8z7] {
    width: 40px;
    height: 22px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease;
    padding: 0;
}

.nl-toggle.on[b-417g8iw8z7] { background: var(--stemblue, #4D2EFD); }

.nl-toggle-knob[b-417g8iw8z7] {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.nl-toggle.on .nl-toggle-knob[b-417g8iw8z7] { left: 20px; }

/* ─── Audience Chips ─── */
.nl-audience-chips[b-417g8iw8z7] { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }

.nl-audience-chip[b-417g8iw8z7] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.7rem;
    background: rgba(77, 46, 253, 0.08);
    color: var(--stemblue, #4D2EFD);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
}

.nl-chip-remove[b-417g8iw8z7] {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 0.15rem;
    line-height: 1;
    opacity: 0.6;
}

.nl-chip-remove:hover[b-417g8iw8z7] { opacity: 1; }

/* ─── Template Grid ─── */
.nl-sidebar-template-grid[b-417g8iw8z7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.nl-sidebar-template-option[b-417g8iw8z7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.5rem;
    border: 2px solid rgba(77, 46, 253, 0.1);
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    font-size: 0.75rem;
    color: #6b7280;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.nl-sidebar-template-option i[b-417g8iw8z7] { font-size: 1.25rem; color: var(--stemblue, #4D2EFD); opacity: 0.4; }

.nl-sidebar-template-option:hover[b-417g8iw8z7] { border-color: var(--stemblue, #4D2EFD); }

.nl-sidebar-template-option.selected[b-417g8iw8z7] {
    border-color: var(--stemblue, #4D2EFD);
    background: rgba(77, 46, 253, 0.04);
    color: var(--stemblue, #4D2EFD);
    font-weight: 600;
}

.nl-sidebar-template-option.selected i[b-417g8iw8z7] { opacity: 1; }

/* ─── Info Rows ─── */
.nl-info-row[b-417g8iw8z7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.85rem;
}

.nl-info-row:last-child[b-417g8iw8z7] { border-bottom: none; }
.nl-info-label[b-417g8iw8z7] { color: #6b7280; font-weight: 500; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .nl-editor-layout[b-417g8iw8z7] { grid-template-columns: 1fr; }
    .nl-editor-sidebar[b-417g8iw8z7] { order: -1; }
}

@media (max-width: 768px) {
    .nl-editor[b-417g8iw8z7] { padding: 1rem; }
    .nl-editor-header[b-417g8iw8z7] { flex-direction: column; gap: 1rem; align-items: stretch; }
    .nl-editor-header-actions[b-417g8iw8z7] { justify-content: flex-end; }
}
/* /Components/Pages/AdminNewsletterManagement.razor.rz.scp.css */
/* ─── Newsletter Management scoped styles ─── */

.admin-newsletter-management[b-m848u43rag] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* ─── Stats Row ─── */
.admin-stats-row[b-m848u43rag] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

[b-m848u43rag] .admin-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(77, 46, 253, 0.06);
    border: 1px solid rgba(77, 46, 253, 0.08);
}

[b-m848u43rag] .admin-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

[b-m848u43rag] .admin-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stemblue, #4D2EFD);
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

[b-m848u43rag] .admin-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

[b-m848u43rag] .admin-stat-trend {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.15rem;
}

[b-m848u43rag] .admin-stat-trend.up { color: #059669; }
[b-m848u43rag] .admin-stat-trend.down { color: #dc3545; }

/* ─── Tabs ─── */
[b-m848u43rag] .admin-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    padding: 0.35rem;
    box-shadow: 0 2px 8px rgba(77, 46, 253, 0.06);
    border: 1px solid rgba(77, 46, 253, 0.08);
}

[b-m848u43rag] .admin-tab {
    padding: 0.625rem 1.25rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-m848u43rag] .admin-tab:hover { background: rgba(77, 46, 253, 0.05); color: var(--stemblue, #4D2EFD); }

[b-m848u43rag] .admin-tab.active {
    background: var(--stemblue, #4D2EFD);
    color: white;
    font-weight: 600;
}

[b-m848u43rag] .admin-tab-badge {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(254, 146, 13, 0.2);
    color: #d97706;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    min-width: 1.2rem;
    text-align: center;
}

[b-m848u43rag] .admin-tab.active .admin-tab-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* ─── Newsletter table columns ─── */
.nl-table-header[b-m848u43rag], .nl-table-header + .table-row[b-m848u43rag] {
    grid-template-columns: 2fr 0.8fr 1fr 0.7fr 0.7fr 1fr 1fr !important;
}

.col-audience[b-m848u43rag] { font-size: 0.85rem; color: #6b7280; }
.col-metrics[b-m848u43rag] { text-align: center; }
.metric-value[b-m848u43rag] { font-weight: 600; color: var(--stemblue, #4D2EFD); font-size: 0.9rem; }
.audience-tag[b-m848u43rag] { font-size: 0.8rem; color: #6b7280; }

/* ─── Template Grid ─── */
.nl-template-grid[b-m848u43rag] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.nl-template-card[b-m848u43rag] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(77, 46, 253, 0.06);
    border: 1px solid rgba(77, 46, 253, 0.08);
    overflow: hidden;
    transition: all 0.2s ease;
}

.nl-template-card:hover[b-m848u43rag] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(77, 46, 253, 0.12);
}

.nl-template-preview[b-m848u43rag] {
    height: 160px;
    background: linear-gradient(135deg, rgba(77, 46, 253, 0.05) 0%, #f8f9fa 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.nl-template-preview img[b-m848u43rag] { width: 100%; height: 100%; object-fit: cover; }

.nl-template-preview-placeholder[b-m848u43rag] {
    font-size: 2.5rem;
    color: var(--stemblue, #4D2EFD);
    opacity: 0.3;
}

.nl-template-body[b-m848u43rag] { padding: 1rem; }
.nl-template-name[b-m848u43rag] { font-weight: 600; color: var(--stemblue, #4D2EFD); margin-bottom: 0.25rem; }
.nl-template-desc[b-m848u43rag] { font-size: 0.85rem; color: #6b7280; margin-bottom: 0.5rem; }

.nl-template-meta[b-m848u43rag] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.nl-template-tag[b-m848u43rag] {
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.nl-template-tag.default[b-m848u43rag] { background: rgba(77, 46, 253, 0.1); color: var(--stemblue, #4D2EFD); }
.nl-template-tag.custom[b-m848u43rag] { background: rgba(254, 146, 13, 0.1); color: #d97706; }

/* ─── Compose Modal ─── */
.nl-compose-modal[b-m848u43rag] {
    padding: 2rem;
    max-width: 550px;
    min-width: 400px;
}

.nl-compose-modal h2[b-m848u43rag] {
    color: var(--stemblue, #4D2EFD);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.nl-form-field[b-m848u43rag] { margin-bottom: 1rem; }

.nl-form-label[b-m848u43rag] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.nl-form-input[b-m848u43rag] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid rgba(77, 46, 253, 0.1);
    border-radius: 0.625rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.15s ease;
}

.nl-form-input:focus[b-m848u43rag] {
    outline: none;
    border-color: var(--stemblue, #4D2EFD);
    box-shadow: 0 0 0 3px rgba(77, 46, 253, 0.1);
}

/* ─── Subscriber Detail Panel ─── */
[b-m848u43rag] .slideover-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
}

[b-m848u43rag] .slideover-panel {
    width: 420px;
    max-width: 90vw;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    animation: slideIn-b-m848u43rag 0.2s ease;
}

@keyframes slideIn-b-m848u43rag {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

[b-m848u43rag] .slideover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

[b-m848u43rag] .slideover-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--stemblue, #4D2EFD);
}

[b-m848u43rag] .slideover-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 0.35rem;
    transition: background 0.15s;
}

[b-m848u43rag] .slideover-close:hover { background: #f3f4f6; }

[b-m848u43rag] .slideover-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
[b-m848u43rag] .slideover-footer { padding: 1rem 1.5rem; border-top: 1px solid #e5e7eb; }

.subscriber-detail[b-m848u43rag] { text-align: center; }

.subscriber-detail-avatar[b-m848u43rag] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--stemblue, #4D2EFD);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 0.75rem;
}

.subscriber-detail-name[b-m848u43rag] { font-weight: 600; margin: 0 0 0.25rem; color: #1f2937; }
.subscriber-detail-email[b-m848u43rag] { color: #6b7280; font-size: 0.9rem; margin: 0 0 1.5rem; }

.subscriber-detail-meta[b-m848u43rag] { text-align: left; }

.detail-meta-item[b-m848u43rag] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.detail-meta-label[b-m848u43rag] { color: #6b7280; font-weight: 500; }

.subscriber-preferences[b-m848u43rag] { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.5rem; }

.preference-tag[b-m848u43rag] {
    padding: 0.25rem 0.65rem;
    background: rgba(77, 46, 253, 0.08);
    color: var(--stemblue, #4D2EFD);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ─── Header actions ─── */
.header-actions[b-m848u43rag] { display: flex; gap: 0.75rem; align-items: center; }

/* ─── Newsletter-specific status badge colors ─── */
[b-m848u43rag] .status-badge.sent {
    background: rgba(122, 253, 181, 0.2);
    color: #059669;
    border: 1px solid rgba(122, 253, 181, 0.3);
}

[b-m848u43rag] .status-badge.scheduled {
    background: rgba(254, 146, 13, 0.2);
    color: #d97706;
    border: 1px solid rgba(254, 146, 13, 0.3);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .admin-newsletter-management[b-m848u43rag] { padding: 1rem; }
    .admin-stats-row[b-m848u43rag] { grid-template-columns: repeat(2, 1fr); }
    .nl-template-grid[b-m848u43rag] { grid-template-columns: 1fr; }
    .nl-compose-modal[b-m848u43rag] { min-width: auto; padding: 1.5rem; }
}
/* /Components/Pages/AdminUsers.razor.rz.scp.css */
.admin-users[b-hdohge24ug] {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.management-header[b-hdohge24ug] {
    margin-bottom: 2rem;
}

.header-content h1[b-hdohge24ug] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--stemblue);
    margin: 0 0 0.5rem 0;
}

.header-subtitle[b-hdohge24ug] {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Statistics Grid */
.dashboard-stats-grid[b-hdohge24ug] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modern-stat-card[b-hdohge24ug] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.modern-stat-card:hover[b-hdohge24ug] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.stat-card-header[b-hdohge24ug] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-icon-container[b-hdohge24ug] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-users .stat-icon-container[b-hdohge24ug] {
    background: linear-gradient(135deg, var(--stemblue) 0%, #6b46ff 100%);
}

.active-users .stat-icon-container[b-hdohge24ug] {
    background: linear-gradient(135deg, var(--stemgreen) 0%, #5de09a 100%);
}

.inactive-users .stat-icon-container[b-hdohge24ug] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.admin-users .stat-icon-container[b-hdohge24ug] {
    background: linear-gradient(135deg, var(--stemorange) 0%, #ff9f3d 100%);
}

.stat-icon[b-hdohge24ug] {
    color: white;
    font-size: 1.5rem;
}

.stat-trend[b-hdohge24ug] {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.stat-trend.positive[b-hdohge24ug] {
    background: rgba(122, 253, 181, 0.2);
    color: #22c55e;
}

.stat-trend.negative[b-hdohge24ug] {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.stat-trend.neutral[b-hdohge24ug] {
    background: rgba(254, 146, 13, 0.2);
    color: var(--stemorange);
}

.stat-content[b-hdohge24ug] {
    text-align: left;
}

.stat-number[b-hdohge24ug] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label[b-hdohge24ug] {
    font-size: 1rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.25rem;
}

.stat-description[b-hdohge24ug] {
    font-size: 0.875rem;
    color: #999;
}

/* List Container */
.user-list-container[b-hdohge24ug] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.list-header[b-hdohge24ug] {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-section[b-hdohge24ug] {
    flex: 1;
    min-width: 250px;
}

.search-input[b-hdohge24ug] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
}

.filter-section[b-hdohge24ug] {
    display: flex;
    gap: 0.75rem;
}

/* Table Styles */
.user-table[b-hdohge24ug] {
    width: 100%;
}

.table-header[b-hdohge24ug] {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 0.8fr 1fr 0.8fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row[b-hdohge24ug] {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 0.8fr 1fr 0.8fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
    transition: background-color 0.2s;
}

.table-row:hover[b-hdohge24ug] {
    background: #f9fafb;
}

.user-name[b-hdohge24ug] {
    font-weight: 600;
    color: #1a1a1a;
}

.col-email[b-hdohge24ug] {
    color: #6b7280;
    font-size: 0.875rem;
    word-break: break-all;
}

.role-badge[b-hdohge24ug] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--stemblue) 0%, #6b46ff 100%);
    color: white;
    border-radius: 12px;
    font-size: .8225rem;
    font-weight: 600;
    text-transform: capitalize;
}

.role-more[b-hdohge24ug] {
    margin-left: 0.5rem;
    font-size: .8225rem;
    color: #6b7280;
}

.col-age[b-hdohge24ug] {
    font-size: 0.875rem;
    color: #6b7280;
}

.status-badge[b-hdohge24ug] {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: .8225rem;
    font-weight: 600;
    text-transform: capitalize;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-badge.active[b-hdohge24ug] {
    background: rgba(122, 253, 181, 0.15);
    color: #16a34a;
}

.status-badge.disabled[b-hdohge24ug] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.verification-badge[b-hdohge24ug] {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: .8225rem;
    font-weight: 600;
    text-transform: capitalize;
}

.verification-badge.verified[b-hdohge24ug] {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.verification-badge.unverified[b-hdohge24ug] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.col-actions[b-hdohge24ug] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.action-btn[b-hdohge24ug] {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.view-btn[b-hdohge24ug] {
    background: #f3f4f6;
    color: #4b5563;
}

.view-btn:hover[b-hdohge24ug] {
    background: #e5e7eb;
    color: var(--stemblue);
}

.edit-btn[b-hdohge24ug] {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.edit-btn:hover[b-hdohge24ug] {
    background: rgba(59, 130, 246, 0.25);
}

.disable-btn[b-hdohge24ug] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.disable-btn:hover[b-hdohge24ug] {
    background: rgba(239, 68, 68, 0.25);
}

.enable-btn[b-hdohge24ug] {
    background: rgba(122, 253, 181, 0.15);
    color: #16a34a;
}

.enable-btn:hover[b-hdohge24ug] {
    background: rgba(122, 253, 181, 0.25);
}

/* Pagination */
.pagination-container[b-hdohge24ug] {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info[b-hdohge24ug] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.pagination-controls[b-hdohge24ug] {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn[b-hdohge24ug] {
    padding: 0.5rem 0.75rem;
    min-width: 36px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #4b5563;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled)[b-hdohge24ug] {
    background: var(--stemblue);
    color: white;
    border-color: var(--stemblue);
}

.pagination-btn.active[b-hdohge24ug] {
    background: var(--stemblue);
    color: white;
    border-color: var(--stemblue);
}

.pagination-btn:disabled[b-hdohge24ug] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Empty State */
.empty-state[b-hdohge24ug] {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-icon[b-hdohge24ug] {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state h3[b-hdohge24ug] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-hdohge24ug] {
    color: #9ca3af;
    margin: 0;
}

/* Modal Styles */
.user-detail-modal[b-hdohge24ug] {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 5vh auto;
    position: relative;
}

.modal-header[b-hdohge24ug] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.modal-header h2[b-hdohge24ug] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.close-btn[b-hdohge24ug] {
    width: 32px;
    height: 32px;
    border: none;
    background: #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #6b7280;
}

.close-btn:hover[b-hdohge24ug] {
    background: #d1d5db;
    color: #374151;
}

.modal-body[b-hdohge24ug] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.info-section[b-hdohge24ug] {
    margin-bottom: 1.5rem;
}

.info-section:last-child[b-hdohge24ug] {
    margin-bottom: 0;
}

.info-section h4[b-hdohge24ug] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-row[b-hdohge24ug] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-row:last-child[b-hdohge24ug] {
    border-bottom: none;
}

.info-label[b-hdohge24ug] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    min-width: 100px;
}

.info-value[b-hdohge24ug] {
    font-size: 0.875rem;
    color: #1f2937;
    text-align: right;
    word-break: break-word;
}

.simple-tags[b-hdohge24ug] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.simple-tag[b-hdohge24ug] {
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    border-radius: 16px;
    font-size: .8225rem;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.modal-footer[b-hdohge24ug] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #f9fafb;
}

/* Loading State */
.stats-loading[b-hdohge24ug] {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .table-header[b-hdohge24ug],
    .table-row[b-hdohge24ug] {
        grid-template-columns: 2fr 2fr 1fr 0.8fr 1fr 1fr;
    }
    
    .col-age[b-hdohge24ug] {
        display: none;
    }
}

@media (max-width: 900px) {
    .admin-users[b-hdohge24ug] {
        padding: 1rem;
    }
    
    .dashboard-stats-grid[b-hdohge24ug] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header[b-hdohge24ug],
    .table-row[b-hdohge24ug] {
        grid-template-columns: 1.5fr 2fr 1fr 1fr 1fr;
    }
    
    .col-role[b-hdohge24ug] {
        display: none;
    }
}

@media (max-width: 640px) {
    .dashboard-stats-grid[b-hdohge24ug] {
        grid-template-columns: 1fr;
    }
    
    .list-header[b-hdohge24ug] {
        flex-direction: column;
    }
    
    .search-section[b-hdohge24ug],
    .filter-section[b-hdohge24ug] {
        width: 100%;
    }
    
    .filter-section[b-hdohge24ug] {
        flex-direction: column;
    }
    
    .table-header[b-hdohge24ug] {
        display: none;
    }
    
    .table-row[b-hdohge24ug] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .col-name[b-hdohge24ug],
    .col-email[b-hdohge24ug],
    .col-status[b-hdohge24ug],
    .col-verified[b-hdohge24ug],
    .col-actions[b-hdohge24ug] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .col-name[b-hdohge24ug]::before,
    .col-email[b-hdohge24ug]::before,
    .col-status[b-hdohge24ug]::before,
    .col-verified[b-hdohge24ug]::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
        font-size: .8225rem;
    }
    
    .pagination-container[b-hdohge24ug] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination-info[b-hdohge24ug] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination-controls[b-hdohge24ug] {
        justify-content: center;
    }
    
    .user-detail-modal[b-hdohge24ug] {
        width: 95vw;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-header[b-hdohge24ug],
    .modal-body[b-hdohge24ug],
    .modal-footer[b-hdohge24ug] {
        padding: 1rem;
    }
    
    .info-row[b-hdohge24ug] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-label[b-hdohge24ug] {
        min-width: auto;
        font-weight: 600;
    }
    
    .info-value[b-hdohge24ug] {
        text-align: left;
    }
}
/* /Components/Pages/CareerApply.razor.rz.scp.css */
/* ─── Page body entrance animation ───────────────────────── */
@keyframes careerBodyIn-b-bxxetotgoj {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .applyLayout[b-bxxetotgoj] {
        animation: none;
    }
}

.backLink[b-bxxetotgoj] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    text-decoration: none;
    font-weight: 500;
}

.backLink:hover[b-bxxetotgoj] {
    text-decoration: underline;
}

.backLinkBlue[b-bxxetotgoj] {
    color: var(--stemblue, #4D2EFD);
}

/* ─── Body: two columns ──────────────────────────────────── */
.applyLayout[b-bxxetotgoj] {
    display: flex;
    gap: 4rem;
    max-width: var(--designSize, 1440px);
    margin: auto;
    padding: 4.5rem var(--gutter, 9.81rem) 5.5rem;
    align-items: flex-start;
    animation: careerBodyIn-b-bxxetotgoj .55s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.jobDetail[b-bxxetotgoj] {
    flex: 1;
    min-width: 0;
}

.jobDetail h2[b-bxxetotgoj] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--stemblue, #4D2EFD);
    margin: 2.25rem 0 .75rem;
}

.jobDetail h2:first-child[b-bxxetotgoj] {
    margin-top: 0;
}

.jobDetail p[b-bxxetotgoj] {
    line-height: 1.75;
    color: var(--copy, #3C3852);
    font-weight: 300;
}

.jobDetail ul[b-bxxetotgoj] {
    padding-left: 1.2rem;
    margin: .5rem 0 0;
}

.jobDetail li[b-bxxetotgoj] {
    margin: .55rem 0;
    line-height: 1.6;
    color: var(--copy, #3C3852);
    font-weight: 300;
}

.salaryStrip[b-bxxetotgoj] {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    background: var(--stemblue-10, #F1EEFF);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.salaryItem .label[b-bxxetotgoj] {
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--stemblue, #4D2EFD);
    font-weight: 600;
}

.salaryItem .value[b-bxxetotgoj] {
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: .25rem;
}

/* ─── Application form (sticky card) ─────────────────────── */
.applyCard[b-bxxetotgoj] {
    width: 26rem;
    flex-shrink: 0;
    position: sticky;
    top: 1.5rem;
    background: var(--stemwhite, #FFF);
    border-radius: 1.25rem;
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.10);
    padding: 2rem;
}

.applyCard h3[b-bxxetotgoj] {
    margin: 0 0 .35rem;
    font-size: 1.35rem;
    font-weight: 600;
}

.applyCard .sub[b-bxxetotgoj] {
    margin: 0 0 1.5rem;
    font-size: .9rem;
    color: var(--copy, #3C3852);
    font-weight: 300;
}

.fieldGroup[b-bxxetotgoj] {
    margin-bottom: 1.1rem;
}

.scgLabel[b-bxxetotgoj] {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: .45rem;
}

.req[b-bxxetotgoj] {
    color: var(--stempink, #F04FCD);
}

.scgInput[b-bxxetotgoj] {
    display: flex;
    width: 100%;
    min-height: 2.0625rem;
    padding: 0.75rem 1.25rem;
    border-radius: 2.8225rem;
    background: var(--stemwhite, #FFF);
    border: 1px solid #ddd;
    box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.08);
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.scgInput[b-bxxetotgoj] {
    border-radius: 1.25rem;
    min-height: 6rem;
    resize: vertical;
    font-weight: 400;
}

.scgInput:focus[b-bxxetotgoj] {
    outline: none;
    border-color: var(--stemblue, #4D2EFD);
    box-shadow: 0 0 0 3px var(--stemblue-10, #F1EEFF);
}

/* file upload */
.privacyLink[b-bxxetotgoj] {
    color: var(--stemblue, #4D2EFD);
    font-weight: 500;
    text-decoration: underline;
    transition: color .2s ease;
}

.privacyLink:hover[b-bxxetotgoj] {
    color: var(--stempink, #F04FCD);
}

.fileDrop[b-bxxetotgoj] {
    display: block;
    border: 1.5px dashed var(--stemblue, #4D2EFD);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    background: var(--stemblue-10, #F1EEFF);
    cursor: pointer;
    transition: background .2s ease;
}

.fileDrop:hover[b-bxxetotgoj] {
    background: #e7e2ff;
}

.fileDrop .icon[b-bxxetotgoj] {
    font-size: 1.5rem;
}

.fileDrop .hint[b-bxxetotgoj] {
    font-size: .8rem;
    color: var(--copy, #3C3852);
    margin-top: .35rem;
}

.fileDrop[b-bxxetotgoj]  input[type="file"] {
    display: none;
}

.fileName[b-bxxetotgoj] {
    font-size: .85rem;
    margin-top: .5rem;
    font-weight: 500;
    color: var(--stemblue, #4D2EFD);
}

/* consent */
.consentRow[b-bxxetotgoj] {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    font-size: .82rem;
    color: var(--copy, #3C3852);
    line-height: 1.5;
    margin: 1.1rem 0 .25rem;
}

.consentRow input[b-bxxetotgoj] {
    margin-top: .2rem;
    accent-color: var(--stemblue, #4D2EFD);
    width: 1.05rem;
    height: 1.05rem;
}

/* ─── Success state ──────────────────────────────────────── */
.successCard[b-bxxetotgoj] {
    text-align: center;
    padding: 1rem 0;
}

.successCard .tick[b-bxxetotgoj] {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--stemgreen, #7AFDB5);
    color: var(--stemblack, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.successCard h3[b-bxxetotgoj] {
    font-size: 1.4rem;
}

.successCard p[b-bxxetotgoj] {
    color: var(--copy, #3C3852);
    font-weight: 300;
    line-height: 1.6;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
    .applyLayout[b-bxxetotgoj] {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3rem 1.5rem 5.5rem;
    }

    .applyCard[b-bxxetotgoj] {
        width: 100%;
        position: static;
    }
}

@media (max-width: 575px) {
    .salaryStrip[b-bxxetotgoj] {
        gap: 1.25rem;
    }
}
/* /Components/Pages/Careers.razor.rz.scp.css */
/* ─── Page body entrance animation ───────────────────────── */
@keyframes careerBodyIn-b-yd0lzjcuti {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vacancies[b-yd0lzjcuti] {
        animation: none;
    }
}

/* ─── Vacancies section frame (mirrors .faqs) ────────────── */
.vacancies[b-yd0lzjcuti] {
    padding-left: var(--gutter, 9.81rem);
    padding-right: var(--gutter, 9.81rem);
    display: flex;
    max-width: var(--designSize, 1440px);
    margin: auto;
    animation: careerBodyIn-b-yd0lzjcuti .55s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.vacancyInfo[b-yd0lzjcuti] {
    padding-top: 4.88rem;
    max-width: 35%;
    min-width: 35%;
}

.vacancyBrow[b-yd0lzjcuti] {
    color: var(--stemblue, #4D2EFD);
    font-weight: 600;
    letter-spacing: .06em;
}

.vacancyHeader[b-yd0lzjcuti] {
    font-family: Poppins, sans-serif;
    font-size: 2.1875rem;
    font-weight: 600;
    line-height: 2.625rem;
    color: var(--stemblue, #4D2EFD);
    max-width: 20rem;
    margin: .25rem 0 1rem;
}

.vacancyIntro[b-yd0lzjcuti] {
    color: var(--copy, #3C3852);
    font-weight: 300;
    line-height: 1.7;
    max-width: 22rem;
}

.vacancyData[b-yd0lzjcuti] {
    padding-top: 7.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    padding-bottom: 5.56rem;
    flex: 1;
}

/* ─── Accordion rows with badges (single blue scheme) ────── */
.vac-row[b-yd0lzjcuti] {
    width: auto;
    min-height: 4rem;
    display: flex;
    align-items: center;
    padding: .9rem 1.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500;
    justify-content: space-between;
    gap: 1rem;
    border: none;
    text-align: left;
    font-family: inherit;
    color: var(--stemblack, #000);
    border-radius: .9rem;
    background-color: var(--stemblue-10, #F1EEFF);
}

.vac-row-main[b-yd0lzjcuti] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.vac-row-title[b-yd0lzjcuti] {
    font-weight: 500;
}

.arrow[b-yd0lzjcuti] {
    flex-shrink: 0;
    transition: transform .25s ease;
    margin-right: 10px;
}

.vac-row[aria-expanded="true"] .arrow[b-yd0lzjcuti] {
    transform: rotate(180deg);
}

.badge-row[b-yd0lzjcuti] {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.badge[b-yd0lzjcuti] {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .03em;
    padding: .22rem .7rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .75);
    color: var(--stemblue, #4D2EFD);
}

.vac-answer[b-yd0lzjcuti] {
    max-width: 40.25rem;
    padding: 0 2rem 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01563rem;
    display: none;
}

.vac-answer.open[b-yd0lzjcuti] {
    display: block;
}

.apply-link[b-yd0lzjcuti] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    padding: .55rem 1.75rem;
    border-radius: 2.8225rem;
    background: var(--stemgreen, #7AFDB5);
    color: var(--stemblack, #000);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background .3s ease, color .3s ease;
}

.apply-link:hover[b-yd0lzjcuti] {
    background: var(--stemblue, #4D2EFD);
    color: var(--stemwhite, #FFF);
}

/* ─── Empty state ────────────────────────────────────────── */
.no-vacancies[b-yd0lzjcuti] {
    flex: 1;
    background: var(--stemblue-10, #F1EEFF);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.no-vacancies h3[b-yd0lzjcuti] {
    color: var(--stemblue, #4D2EFD);
    margin-top: 0;
    font-size: 1.5rem;
}

.no-vacancies p[b-yd0lzjcuti] {
    font-weight: 300;
    line-height: 1.7;
    max-width: 34rem;
    margin: 0 auto 1rem;
}

/* ─── CTA banner (mirrors Home/CtaBanner.razor) ──────────── */
.ctaBanner[b-yd0lzjcuti] {
    min-height: 12.75rem;
    background: var(--stemblue, #4D2EFD);
    display: flex;
    align-items: center;
    color: var(--stemwhite, #FFF);
    gap: 2rem;
    overflow: hidden;
}

.ctaBannerGraphic[b-yd0lzjcuti] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 204px;
    margin-left: -1rem;
}

.ctaBannerInner[b-yd0lzjcuti] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    flex: 1;
    padding-right: var(--gutter, 9.81rem);
}

.ctaBannerText[b-yd0lzjcuti] {
    font-size: 1.75rem;
    font-weight: 600;
    max-width: 36rem;
}

.ctaBannerBtn[b-yd0lzjcuti] {
    padding: 0.625rem 2.1875rem;
    border-radius: 2.8225rem;
    background: var(--stemgreen, #7AFDB5);
    color: var(--stemblack, #000);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    white-space: nowrap;
    transition: background .3s ease, color .3s ease;
}

.ctaBannerBtn:hover[b-yd0lzjcuti] {
    background: var(--stempink-50, #F7A7E6);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
    .vacancies[b-yd0lzjcuti] {
        flex-direction: column;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .vacancyInfo[b-yd0lzjcuti] {
        max-width: 100%;
        min-width: 0;
        padding-top: 2.5rem;
    }

    .vacancyData[b-yd0lzjcuti] {
        padding-top: 1.75rem;
    }

    .vac-answer[b-yd0lzjcuti] {
        max-width: 100%;
    }

    .ctaBannerGraphic[b-yd0lzjcuti] {
        display: none;
    }

    .ctaBannerInner[b-yd0lzjcuti] {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 575px) {
    .ctaBannerText[b-yd0lzjcuti] {
        font-size: 1.3rem;
    }
}
/* /Components/Pages/CareersHost.razor.rz.scp.css */
/* ─── Persistent hero banner ─────────────────────────────────
   Owned by the host so it stays mounted across /careers ↔
   /careers/{slug} navigation. Only the inner banner text and the
   body below it swap, so the background image never reloads and the
   banner fades in once (no flash between views). The fade itself is
   driven by the global .bg-image-fade utility, which preloads the
   background image and toggles .is-loaded — matching the Our Games
   hero. */
.heroBg[b-7qaaq0x9a3] {
    background-color: var(--stemblue-10, #F1EEFF);
}

.listingBannerContainer[b-7qaaq0x9a3] {
    width: 100%;
    height: calc(70vh - var(--navBarHeight, 125px));
    min-height: 22rem;
    max-height: 30rem;
    background:
        linear-gradient(120deg, rgba(77, 46, 253, .55), rgba(240, 79, 205, .35)),
        url('/images/careers.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.gameInfoBanner[b-7qaaq0x9a3] {
    background: var(--stemblue, #4D2EFD);
    display: flex;
    flex-direction: column;
    padding: 2.46875rem 4.75rem 2.40625rem 5.5rem;
    width: 38vw;
    max-width: 34rem;
    color: var(--stemwhite, #FFF);
    gap: 1.56rem;
}

.headerBrow[b-7qaaq0x9a3] {
    font-size: .8rem;
    letter-spacing: .14em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--stemgreen, #7AFDB5);
}

.headerTitle[b-7qaaq0x9a3] {
    font-family: Poppins, sans-serif;
    font-size: 2.1875rem;
    font-weight: 600;
    line-height: 2.625rem;
    margin: 0;
}

.headerDetail[b-7qaaq0x9a3] {
    font-size: 1rem;
    line-height: 1.55;
}

.headerCtaBtn[b-7qaaq0x9a3] {
    display: inline-flex;
    padding: 0.625rem 2.1875rem;
    justify-content: center;
    align-items: center;
    border-radius: 2.8225rem;
    background: var(--stemgreen, #7AFDB5);
    color: var(--stemblack, #000);
    text-decoration: none;
    font-size: 1rem;
    width: 100%;
    transition: background .3s ease, color .3s ease;
}

.headerCtaBtn:hover[b-7qaaq0x9a3] {
    background: var(--stemblue, #4D2EFD);
    color: var(--stemwhite, #FFF);
    box-shadow: 0 0 0 2px var(--stemgreen, #7AFDB5);
}

.backLink[b-7qaaq0x9a3] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--stemgreen, #7AFDB5);
    text-decoration: none;
    font-weight: 500;
}

.backLink:hover[b-7qaaq0x9a3] {
    text-decoration: underline;
}

.badge-row[b-7qaaq0x9a3] {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.badge[b-7qaaq0x9a3] {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .03em;
    padding: .28rem .8rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .15);
    color: var(--stemwhite, #FFF);
    border: 1px solid rgba(255, 255, 255, .3);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
    .gameInfoBanner[b-7qaaq0x9a3] {
        width: 90vw;
        max-width: none;
        padding: 1.75rem;
    }
}

@media (max-width: 575px) {
    .headerTitle[b-7qaaq0x9a3] {
        font-size: 1.75rem;
        line-height: 2.1rem;
    }
}
/* /Components/Pages/ForgotPassword.razor.rz.scp.css */
/* ── Step indicator ── */
.fp-steps[b-0zbs745pdr] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.fp-step[b-0zbs745pdr] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    background: #d1d5db;
    color: #fff;
    transition: all 0.2s ease;
}

.fp-step.active[b-0zbs745pdr] {
    background: var(--stemblue);
    color: #fff;
}

.fp-step-line[b-0zbs745pdr] {
    width: 40px;
    height: 2px;
    background: #d1d5db;
    transition: background 0.2s ease;
}

.fp-step-line.active[b-0zbs745pdr] {
    background: var(--stemblue);
}

/* ── Code input ── */
.fp-code-input[b-0zbs745pdr] {
    text-align: center;
    letter-spacing: 0.5rem;
    font-size: 1.4rem !important;
    font-family: monospace;
}

/* ── Resend row ── */
.fp-resend-row[b-0zbs745pdr] {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.fp-resend-link[b-0zbs745pdr] {
    color: var(--stemblue);
    cursor: pointer;
    text-decoration: underline;
}

.fp-resend-link:hover[b-0zbs745pdr] {
    opacity: 0.8;
}

.fp-resend-timer[b-0zbs745pdr] {
    color: var(--copy);
}

/* ── Back link ── */
.fp-back-link[b-0zbs745pdr] {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.fp-back-link a[b-0zbs745pdr] {
    color: var(--copy);
    text-decoration: none;
}

.fp-back-link a:hover[b-0zbs745pdr] {
    color: var(--stemblue);
    text-decoration: underline;
}

/* ── Success state ── */
.fp-success[b-0zbs745pdr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0;
}

/* ── Password strength bar ── */
.fp-strength[b-0zbs745pdr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0 0.75rem;
    width: 100%;
}

.fp-strength-bar[b-0zbs745pdr] {
    flex: 1;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    overflow: hidden;
}

.fp-strength-fill[b-0zbs745pdr] {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

.fp-strength-label[b-0zbs745pdr] {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.fp-strength-weak[b-0zbs745pdr]  { background: var(--stemorange); color: var(--stemorange); }
.fp-strength-fair[b-0zbs745pdr]   { background: var(--stempink); color: var(--stempink); }
.fp-strength-good[b-0zbs745pdr]   { background: var(--stemblue); color: var(--stemblue); }
.fp-strength-strong[b-0zbs745pdr]  { background: var(--stemgreen); color: var(--stemgreen); }
/* /Components/Shared/AdminStatsCard.razor.rz.scp.css */
/* ─── AdminStatsCard scoped styles ─── */

.admin-stat-card[b-9dd0hakoao] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(77, 46, 253, 0.06);
    border: 1px solid rgba(77, 46, 253, 0.08);
}

.admin-stat-icon[b-9dd0hakoao] {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.admin-stat-value[b-9dd0hakoao] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stemblue, #4D2EFD);
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.admin-stat-label[b-9dd0hakoao] {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.admin-stat-trend[b-9dd0hakoao] {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.15rem;
}

.admin-stat-trend.up[b-9dd0hakoao] { color: #059669; }
.admin-stat-trend.down[b-9dd0hakoao] { color: #dc3545; }
/* /Components/Shared/NotificationCenter.razor.rz.scp.css */
/* Notification Center - Scoped Styles (matches notification-center-fluent.html prototype) */
/* Bell, badge, toast CSS is in site.css (global) so keyframes work. */

.notification-center[b-30iwp7nd3v] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* ── Slide-in animation ── */
@keyframes slideIn-b-30iwp7nd3v {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

@keyframes fadeIn-b-30iwp7nd3v {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Overlay ── */
.notification-overlay[b-30iwp7nd3v] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); 
    z-index: 999;
    animation: fadeIn-b-30iwp7nd3v 0.25s ease;
    will-change: opacity;
}

/* ── Panel ── */
.notification-panel[b-30iwp7nd3v] {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e6e9f2;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.14);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    animation: slideIn-b-30iwp7nd3v 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    backface-visibility: hidden;
}

/* ── Panel Header ── */
.notif-header[b-30iwp7nd3v] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e6e9f2;
    background: linear-gradient(180deg, #ffffff, #fbfcff);
    height: 55px;
}

.notif-header-left[b-30iwp7nd3v] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.notif-header-left h2[b-30iwp7nd3v] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1b1b1f;
}

.notif-count[b-30iwp7nd3v] {
    background: rgba(77, 46, 253, 0.10);
    color: #4D2EFD;
    font-size: .8225rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}

.notif-header-actions[b-30iwp7nd3v] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.notif-header-actions button[b-30iwp7nd3v] {
    background: transparent;
    border: 1px solid transparent;
    color: #4D2EFD;
    cursor: pointer;
    font-size: .8225rem;
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    transition: 140ms ease;
}

.notif-header-actions button:hover[b-30iwp7nd3v] {
    background: rgba(77, 46, 253, 0.10);
    border-color: rgba(77, 46, 253, 0.20);
}

.notif-close-btn[b-30iwp7nd3v] {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    color: #5e5e5e;
    transition: 140ms ease;
    padding: 0;
}

.notif-close-btn svg[b-30iwp7nd3v] {
    width: 16px;
    height: 16px;
}

.notif-close-btn:hover[b-30iwp7nd3v] {
    background: #ebebeb;
    border-color: #e0e0e0;
}

/* ── Filter Tabs ── */
.notif-filters[b-30iwp7nd3v] {
    display: flex;
    gap: 0.25rem;
    padding: 0.6rem 1.25rem;
    border-bottom: 1px solid #e6e9f2;
    background: #fafafa;
}

.notif-filter-tab[b-30iwp7nd3v] {
    background: transparent;
    border: 1px solid transparent;
    color: #5e5e5e;
    cursor: pointer;
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: .8225rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: 140ms ease;
}

.notif-filter-tab:hover[b-30iwp7nd3v] {
    background: #ffffff;
    border-color: #e0e0e0;
}

.notif-filter-tab.active[b-30iwp7nd3v] {
    background: #4D2EFD;
    color: #fff;
    border-color: #4D2EFD;
}

/* ── Notification List ── */
.notif-list[b-30iwp7nd3v] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

/* ── Empty State ── */
.notif-empty[b-30iwp7nd3v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #667085;
}

.notif-empty-icon[b-30iwp7nd3v] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(77, 46, 253, 0.10);
    color: #4D2EFD;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.notif-empty-icon svg[b-30iwp7nd3v] {
    width: 28px;
    height: 28px;
}

.notif-empty h3[b-30iwp7nd3v] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1b1b1f;
    margin-bottom: 0.3rem;
}

.notif-empty p[b-30iwp7nd3v] {
    font-size: .8225rem;
    margin: 0;
}

/* ── Notification Item ── */
.notif-item[b-30iwp7nd3v] {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 0.5rem;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
    position: relative;
}

.notif-item:hover[b-30iwp7nd3v] {
    background: var(--stemblue-10);
}
.notif-item.unread[b-30iwp7nd3v] {
    background: var(--stemblue-10);
}
.notif-item.unread .notif-title[b-30iwp7nd3v] {
    color: #4D2EFD;
}

/* ── Icon ── */
.notif-icon[b-30iwp7nd3v] {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon svg[b-30iwp7nd3v] {
    width: 18px;
    height: 18px;
}

.notif-icon.info[b-30iwp7nd3v],
.notif-icon.success[b-30iwp7nd3v],
.notif-icon.warning[b-30iwp7nd3v],
.notif-icon.error[b-30iwp7nd3v] { background: rgba(77, 46, 253, 0.10); color: #4D2EFD; }

/* ── Body / Title / Desc / Meta ── */
.notif-body[b-30iwp7nd3v] { flex: 1; min-width: 0; }

.notif-title[b-30iwp7nd3v] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1b1b1f;
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.notif-desc[b-30iwp7nd3v] {
    font-size: .8225rem;
    color: #667085;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-meta[b-30iwp7nd3v] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.notif-time[b-30iwp7nd3v] {
    font-size: .8225rem;
    color: #8a8a8a;
}

.notif-tag[b-30iwp7nd3v] {
    font-size: .8225rem;
    font-weight: 600;
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.notif-tag.assignment[b-30iwp7nd3v],
.notif-tag.evaluation[b-30iwp7nd3v],
.notif-tag.support[b-30iwp7nd3v],
.notif-tag.game[b-30iwp7nd3v],
.notif-tag.account[b-30iwp7nd3v],
.notif-tag.system[b-30iwp7nd3v] { background: rgba(77, 46, 253, 0.10); color: #4D2EFD; }

/* ── Inline Hover Actions ── */
.notif-actions-inline[b-30iwp7nd3v] {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 140ms ease;
}

.notif-item:hover .notif-actions-inline[b-30iwp7nd3v] {
    opacity: 1;
}

.notif-action-btn[b-30iwp7nd3v] {
    background: #ffffff;
    border: 1px solid #e6e9f2;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: .8225rem;
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    color: #4D2EFD;
    cursor: pointer;
    transition: 140ms ease;
}

.notif-action-btn:hover[b-30iwp7nd3v] {
    background: rgba(77, 46, 253, 0.10);
    border-color: rgba(77, 46, 253, 0.20);
}

.notif-action-btn.primary[b-30iwp7nd3v] {
    background: #4D2EFD;
    color: #fff;
    border-color: #4D2EFD;
}

.notif-action-btn.primary:hover[b-30iwp7nd3v] {
    background: #3d20e8;
}

/* ── Slide-out animation ── */
@keyframes slideOut-b-30iwp7nd3v {
    from { transform: translateX(0); }
    to   { transform: translateX(100%); }
}

@keyframes fadeOut-b-30iwp7nd3v {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.notification-panel.closing[b-30iwp7nd3v] {
    animation: slideOut-b-30iwp7nd3v 0.25s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.notification-overlay.closing[b-30iwp7nd3v] {
    animation: fadeOut-b-30iwp7nd3v 0.25s ease forwards;
}

/* ── Responsive ── */
@@media (max-width: 480px) {
    .notification-panel[b-30iwp7nd3v] {
        width: 100vw;
    }
}
/* /Components/Shared/NotificationDetailPanel.razor.rz.scp.css */
/* ── Detail View ── */
.notif-detail[b-z79j94rnwl] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.notif-detail-header[b-z79j94rnwl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ea-border, #e6e9f2);
    background: linear-gradient(180deg, #ffffff, #fbfcff);
    height: 55px;
}

.notif-detail-title[b-z79j94rnwl] {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 600;
}

.notif-back-btn[b-z79j94rnwl] {
    background: transparent;
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5e5e5e;
    transition: 140ms ease;
}

.notif-back-btn svg[b-z79j94rnwl] { width: 16px; height: 16px; }
.notif-back-btn:hover[b-z79j94rnwl] { background: #ebebeb; }

.notif-close-btn[b-z79j94rnwl] {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    color: #5e5e5e;
    transition: 140ms ease;
}

.notif-close-btn svg[b-z79j94rnwl] { width: 16px; height: 16px; }
.notif-close-btn:hover[b-z79j94rnwl] { background: #ebebeb; border-color: #e0e0e0; }

.notif-detail-content[b-z79j94rnwl] {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
}

.notif-detail-content h3[b-z79j94rnwl] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.notif-detail-content .detail-time[b-z79j94rnwl] {
    font-size: 0.8225rem;
    color: var(--stemmuted, #667085);
    margin-bottom: 1rem;
}

.notif-detail-content .detail-body[b-z79j94rnwl] {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.6;
}

.notif-detail-content .detail-body p + p[b-z79j94rnwl] {
    margin-top: 0.75rem;
}

.detail-reply-message[b-z79j94rnwl] {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f7f8fc;
    border-left: 3px solid #4D2EFD;
    border-radius: 0 6px 6px 0;
}

.detail-reply-message p[b-z79j94rnwl] {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ── Category Tags ── */
.notif-tag[b-z79j94rnwl] {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.notif-tag.assignment[b-z79j94rnwl] { background: rgba(77, 46, 253, 0.10); color: #4D2EFD; }
.notif-tag.evaluation[b-z79j94rnwl] { background: rgba(236, 72, 153, 0.10); color: #ec4899; }
.notif-tag.support[b-z79j94rnwl]    { background: rgba(245, 158, 11, 0.10); color: #d97706; }
.notif-tag.game[b-z79j94rnwl]       { background: rgba(16, 185, 129, 0.10); color: #059669; }
.notif-tag.account[b-z79j94rnwl]    { background: rgba(99, 102, 241, 0.10); color: #6366f1; }
.notif-tag.task[b-z79j94rnwl]       { background: rgba(14, 165, 233, 0.10); color: #0ea5e9; }
.notif-tag.system[b-z79j94rnwl]     { background: rgba(107, 114, 128, 0.10); color: #6b7280; }

/* ── Actions Footer ── */
.detail-actions[b-z79j94rnwl] {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--ea-border, #e6e9f2);
}

.detail-action-btn[b-z79j94rnwl] {
    padding: 0.5rem 1rem;
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: 140ms ease;
    border: 1px solid #e6e9f2;
    background: #ffffff;
    color: #1b1b1f;
    border-radius: 20px;
}

.detail-action-btn:hover[b-z79j94rnwl] { background: #f5f5f5; }

.detail-action-btn.primary[b-z79j94rnwl] {
    background: #4D2EFD;
    color: #fff;
    border-color: #4D2EFD;
}

.detail-action-btn.primary:hover[b-z79j94rnwl] {
    background: #3d20e8;
}

.detail-action-btn.danger[b-z79j94rnwl] {
    color: #e5484d;
    border-color: rgba(229, 72, 77, 0.3);
    margin-left: auto;
}

.detail-action-btn.danger:hover[b-z79j94rnwl] {
    background: rgba(229, 72, 77, 0.06);
    border-color: #e5484d;
}
/* /Components/Shared/SCGPager.razor.rz.scp.css */
/* SCGPager — canonical pagination control. Visual base: Style 5 (.lrs-pagination). */

.scg-pager[b-fumdwbjt67] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    padding: .75rem 1rem;
    font-size: .8225rem;
    color: var(--ea-neutral-60, #4B4F66);
}

.scg-pager-left[b-fumdwbjt67] {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.scg-pager-info[b-fumdwbjt67] {
    font-size: .8225rem;
    color: var(--ea-neutral-60, #4B4F66);
}

.scg-pager-size[b-fumdwbjt67] {
    appearance: none;
    border: 1px solid var(--ea-border, #E4E7F0);
    background: #fff;
    border-radius: var(--ea-radius-sm, 6px);
    padding: .35rem 1.6rem .35rem .65rem;
    font-family: var(--ea-font, inherit);
    font-size: .78rem;
    color: var(--ea-neutral-60, #4B4F66);
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%236B6F86' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color .15s;
}

.scg-pager-size:hover[b-fumdwbjt67],
.scg-pager-size:focus[b-fumdwbjt67] {
    border-color: var(--ea-blue-30, #A58FFC);
    outline: none;
}

.scg-pager-pages[b-fumdwbjt67] {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.scg-page-btn[b-fumdwbjt67] {
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0 .35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ea-radius-sm, 6px);
    border: 1px solid var(--ea-border, #E4E7F0);
    background: #fff;
    font-family: var(--ea-font, inherit);
    font-size: .76rem;
    font-weight: 500;
    color: var(--ea-neutral-60, #4B4F66);
    cursor: pointer;
    transition: all .15s;
}

.scg-page-btn:hover:not(:disabled):not(.active)[b-fumdwbjt67] {
    border-color: var(--ea-blue-30, #A58FFC);
    color: var(--ea-blue, #4D2EFD);
}

.scg-page-btn.active[b-fumdwbjt67] {
    background: var(--ea-blue, #4D2EFD);
    color: #fff;
    border-color: var(--ea-blue, #4D2EFD);
}

.scg-page-btn:disabled[b-fumdwbjt67] {
    opacity: .4;
    cursor: default;
}

.scg-page-btn svg[b-fumdwbjt67] {
    width: 14px;
    height: 14px;
}

.scg-page-ellipsis[b-fumdwbjt67] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 30px;
    color: var(--ea-neutral-40, #8A8FA4);
    font-weight: 500;
    font-size: .82rem;
    user-select: none;
}

@media (max-width: 640px) {
    .scg-pager[b-fumdwbjt67] {
        justify-content: center;
    }
    .scg-pager-left[b-fumdwbjt67] {
        justify-content: center;
        width: 100%;
    }
    .scg-pager-pages[b-fumdwbjt67] {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* /Components/Users/AddAssignment.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   AddAssignment – scoped styles (aa-* prefix)
   Shared modal styles (as-*) live in educator-admin.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── Two-column grid ────────────────────────────────────────── */
.aa-columns[b-o859nuxoyd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.aa-col[b-o859nuxoyd] {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    padding: 1.25rem 1.5rem;
}

.aa-col-left[b-o859nuxoyd] {
    border-right: 1px solid var(--ea-border-subtle);
}

.aa-col-heading[b-o859nuxoyd] {
    font-family: var(--ea-font);
    font-size: .8225rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ea-neutral-40);
    margin-bottom: .15rem;
}

@media (max-width: 640px) {
    .aa-columns[b-o859nuxoyd] {
        grid-template-columns: 1fr;
    }
    .aa-col-left[b-o859nuxoyd] {
        border-right: none;
        border-bottom: 1px solid var(--ea-border-subtle);
    }
}


/* ─── Email-notify checkbox + hint ───────────────────────────── */
.aa-notify[b-o859nuxoyd] { 
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-family: var(--ea-font);
    font-size: .85rem;
    font-weight: 600;
    color: var(--ea-blue);
    margin-top: 20px !important;
}

.aa-notify-hint[b-o859nuxoyd] {
    display: flex;
    align-items: flex-start;
    gap: .35rem;
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
    padding-left: .15rem;
}

.aa-notify-hint svg[b-o859nuxoyd] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ─── Section header with toggle-all ─────────────────────────── */
.aa-section-header[b-o859nuxoyd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aa-section-header .as-label[b-o859nuxoyd] {
    margin: 0;
}

.aa-toggle-all[b-o859nuxoyd] {
    font-family: var(--ea-font);
    font-size: .8225rem;
    font-weight: 600;
    color: var(--ea-blue);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 150ms;
}

.aa-toggle-all:hover[b-o859nuxoyd] {
    color: var(--ea-blue-90);
    text-decoration: underline;
}


/* ─── Scrollable checkbox list ───────────────────────────────── */
[b-o859nuxoyd] .aa-list {
    max-height: 208px;
    overflow-y: auto;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-sm);
    background: var(--ea-white);
}

[b-o859nuxoyd] .aa-list::-webkit-scrollbar {
    width: 6px;
}

[b-o859nuxoyd] .aa-list::-webkit-scrollbar-track {
    background: transparent;
}

[b-o859nuxoyd] .aa-list::-webkit-scrollbar-thumb {
    background: var(--ea-neutral-20);
    border-radius: 3px;
}

[b-o859nuxoyd] .aa-list::-webkit-scrollbar-thumb:hover {
    background: var(--ea-neutral-40);
}


/* ─── List item row ──────────────────────────────────────────── */
[b-o859nuxoyd] .aa-list-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .75rem;
    cursor: pointer;
    border-bottom: 1px solid var(--ea-border-subtle);
    transition: background 120ms;
}

[b-o859nuxoyd] .aa-list-item:last-child {
    border-bottom: none;
}

[b-o859nuxoyd] .aa-list-item:hover {
    background: var(--ea-blue-10);
}

[b-o859nuxoyd] .aa-list-item.selected {
    background: var(--ea-blue-10);
}

.aa-list-item-info[b-o859nuxoyd] {
    flex: 1;
    min-width: 0;
}

.aa-list-item-name[b-o859nuxoyd] {
    font-family: var(--ea-font);
    font-size: .85rem;
    font-weight: 500;
    color: var(--ea-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aa-list-item-meta[b-o859nuxoyd] {
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
}


/* ─── Selection summary ─────────────────────────────────────── */
.aa-summary[b-o859nuxoyd] {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
    margin-top: .35rem;
}

.aa-summary .count-badge[b-o859nuxoyd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 .4rem;
    border-radius: 10px;
    font-size: .8225rem;
    font-weight: 700;
    background: var(--ea-neutral-6);
    color: var(--ea-neutral-40);
    transition: all 200ms;
}

.aa-summary .count-badge.has-selection[b-o859nuxoyd] {
    background: var(--ea-blue);
    color: #fff;
}


/* ─── Empty state ────────────────────────────────────────────── */
.aa-empty[b-o859nuxoyd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: 1.2rem;
    color: var(--ea-neutral-40);
}

.aa-empty svg[b-o859nuxoyd] {
    width: 24px;
    height: 24px;
    opacity: .5;
}

.aa-empty p[b-o859nuxoyd] {
    font-size: .8225rem;
    margin: 0;
}
/* /Components/Users/AddStudent.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   AddStudent.razor.css  –  Scoped overrides only.
   All shared as-* modal-form styles now live in educator-admin.css
   so they can be reused by AddStudentGroup, AddAssignment, etc.
   ═══════════════════════════════════════════════════════════════ */
/* /Components/Users/AddStudentGroup.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   AddStudentGroup.razor.css
   Scoped styles for the student-selection list.
   Shared as-* styles live in educator-admin.css.
   ═══════════════════════════════════════════════════════════════ */


/* ─── STUDENT SELECTION LIST ─────────────────────────────────── */
.asg-student-list[b-36rfyy5if7] {
    border: 1px solid var(--ea-border, #e6e9f2);
    border-radius: var(--ea-radius-sm, 6px);
    max-height: 220px;
    overflow-y: auto;
    background: var(--ea-white, #ffffff);
}

.asg-student-list[b-36rfyy5if7]::-webkit-scrollbar {
    width: 6px;
}

.asg-student-list[b-36rfyy5if7]::-webkit-scrollbar-track {
    background: transparent;
}

.asg-student-list[b-36rfyy5if7]::-webkit-scrollbar-thumb {
    background: var(--ea-neutral-20, #c8c8c8);
    border-radius: 3px;
}

.asg-student-list[b-36rfyy5if7]::-webkit-scrollbar-thumb:hover {
    background: var(--ea-neutral-40, #9e9e9e);
}

.asg-student-item[b-36rfyy5if7] {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .75rem;
    border-bottom: 1px solid var(--ea-border-subtle, #f0f0f4);
    cursor: pointer;
    transition: background 120ms;
}

.asg-student-item:last-child[b-36rfyy5if7] {
    border-bottom: none;
}

.asg-student-item:hover[b-36rfyy5if7] {
    background: var(--ea-blue-10, #efecff);
}

.asg-student-item.selected[b-36rfyy5if7] {
    background: var(--ea-blue-10, #efecff);
}

.asg-student-info[b-36rfyy5if7] {
    flex: 1;
    min-width: 0;
}

.asg-student-name[b-36rfyy5if7] {
    font-family: var(--ea-font, "Poppins", sans-serif);
    font-size: .84rem;
    font-weight: 600;
    color: var(--ea-black, #1b1b1f);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.asg-student-id[b-36rfyy5if7] {
    font-family: var(--ea-font, "Poppins", sans-serif);
    font-size: .8225rem;
    color: var(--ea-neutral-40, #9e9e9e);
}


/* ─── SELECTED COUNT BADGE ───────────────────────────────────── */
.asg-selected-count[b-36rfyy5if7] {
    font-family: var(--ea-font, "Poppins", sans-serif);
    font-size: .74rem;
    color: var(--ea-neutral-60, #6e6e6e);
    margin-top: .25rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.asg-selected-count .count-badge[b-36rfyy5if7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: .8225rem;
    font-weight: 700;
    background: var(--ea-blue-10, #efecff);
    color: var(--ea-blue, #4D2EFD);
    transition: all 200ms;
}

.asg-selected-count .count-badge.has-selection[b-36rfyy5if7] {
    background: var(--ea-blue, #4D2EFD);
    color: #fff;
}


/* ─── EMPTY STATE ────────────────────────────────────────────── */
.asg-empty[b-36rfyy5if7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: .4rem;
    color: var(--ea-neutral-40, #9e9e9e);
}

.asg-empty svg[b-36rfyy5if7] {
    width: 32px;
    height: 32px;
    color: var(--ea-neutral-20, #c8c8c8);
}

.asg-empty p[b-36rfyy5if7] {
    font-family: var(--ea-font, "Poppins", sans-serif);
    font-size: .82rem;
    font-style: italic;
}
/* /Components/Users/AdminDashboardView.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   AdminDashboardView – Game Management Styles
   Matches: prototypes/game-management-admin.html
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tab Strip ────────────────────────────────────────────────── */
.gm-tab-strip[b-3wj1xskfee] {
    display: flex;
    gap: .15rem;
    border-bottom: 2px solid var(--ea-border);
    margin-bottom: 1rem;
}
.gm-tab-btn[b-3wj1xskfee] {
    padding: .6rem 1rem;
    border: none;
    background: transparent;
    font-size: .88rem;
    font-weight: 600;
    font-family: var(--ea-font);
    color: var(--ea-neutral-60);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 120ms, border-color 120ms;
}
.gm-tab-btn:hover[b-3wj1xskfee] { color: var(--ea-blue); }
.gm-tab-btn.active[b-3wj1xskfee] { color: var(--ea-blue); border-bottom-color: var(--ea-blue); }

.gm-tab-count[b-3wj1xskfee] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 .3rem;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    margin-left: .35rem;
    background: var(--ea-neutral-6);
    color: var(--ea-neutral-60);
}
.gm-tab-btn.active .gm-tab-count[b-3wj1xskfee] {
    background: var(--ea-blue-10);
    color: var(--ea-blue);
}

/* ─── Game Table Row Elements ──────────────────────────────────── */
.gm-row-info[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.gm-row-cover[b-3wj1xskfee] {
    width: 56px;
    height: 38px;
    border-radius: var(--ea-radius-sm);
    background-size: cover;
    background-position: center;
    background-color: var(--ea-neutral-6);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ea-neutral-40);
    overflow: hidden;
}
.gm-row-cover svg[b-3wj1xskfee] { width: 20px; height: 20px; }

.gm-row-title[b-3wj1xskfee] {
    font-weight: 600;
    font-size: .88rem;
    color: var(--ea-black);
}
.gm-row-subtitle[b-3wj1xskfee] {
    font-size: .72rem;
    color: var(--ea-neutral-40);
    margin-top: .05rem;
}

/* ─── Tags ─────────────────────────────────────────────────────── */
.gm-tag-subject[b-3wj1xskfee],
.gm-tag-keystage[b-3wj1xskfee],
.gm-tag-age[b-3wj1xskfee],
.gm-tag-duration[b-3wj1xskfee] {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: .12rem .45rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 600;
    white-space: nowrap;
}
.gm-tag-subject[b-3wj1xskfee]  { background: rgba(240, 79, 205, .1);  color: var(--stempink); }
.gm-tag-keystage[b-3wj1xskfee] { background: rgba(122, 253, 181, .15); color: var(--ea-green-dark); }
.gm-tag-age[b-3wj1xskfee]      { background: rgba(254, 146, 13, .1);   color: #b45309; }
.gm-tag-duration[b-3wj1xskfee] { background: var(--ea-blue-10);         color: var(--ea-blue); }

/* ─── Back Link ────────────────────────────────────────────────── */
.gm-back-link[b-3wj1xskfee] {
    margin-bottom: .75rem;
}

/* ─── Detail Layout (side-by-side editor) ──────────────────────── */
.gm-detail-layout[b-3wj1xskfee] {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.25rem;
    align-items: start;
}
.gm-detail-main[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gm-detail-sidebar[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ─── Section Cards ────────────────────────────────────────────── */
.gm-section-card[b-3wj1xskfee] {
    background: var(--ea-surface-card);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg);
    padding: 1.15rem;
}
.gm-section-card-header[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--ea-border-subtle);
}
.gm-section-card-header svg[b-3wj1xskfee] {
    width: 18px;
    height: 18px;
    color: var(--ea-blue);
    flex-shrink: 0;
}
.gm-section-card-header h4[b-3wj1xskfee] {
    font-size: .92rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

/* ─── Forms ────────────────────────────────────────────────────── */
.gm-form-grid[b-3wj1xskfee] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.gm-form-group[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
}
.gm-form-group label[b-3wj1xskfee] {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ea-neutral-60);
    margin-bottom: .35rem;
}
.gm-form-control[b-3wj1xskfee] {
    width: 100%;
    padding: .55rem .75rem;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-sm);
    font-size: .88rem;
    font-family: var(--ea-font);
    color: var(--ea-black);
    background: #fff;
    transition: border-color 120ms, box-shadow 120ms;
}
.gm-form-control:focus[b-3wj1xskfee] {
    outline: none;
    border-color: var(--ea-blue);
    box-shadow: 0 0 0 3px var(--ea-blue-10);
}
textarea.gm-form-control[b-3wj1xskfee] {
    resize: vertical;
    min-height: 80px;
}

/* ─── Toggle Switch (button-based) ─────────────────────────────── */
.gm-toggle-row[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    border-bottom: 1px solid var(--ea-border-subtle);
}
.gm-toggle-row:last-child[b-3wj1xskfee] { border-bottom: none; }
.gm-toggle-row label[b-3wj1xskfee] {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ea-black);
    cursor: default;
}
.gm-toggle[b-3wj1xskfee] {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    background: var(--ea-neutral-20);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    padding: 0;
    transition: background 200ms;
}
.gm-toggle.on[b-3wj1xskfee] { background: var(--ea-blue); }

.gm-toggle-slider[b-3wj1xskfee] {
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 200ms;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    pointer-events: none;
}
.gm-toggle.on .gm-toggle-slider[b-3wj1xskfee] { transform: translateX(20px); }

/* ─── Quick Info (sidebar) ─────────────────────────────────────── */
.gm-quick-info[b-3wj1xskfee] {
    background: var(--ea-surface-card);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg);
    padding: 1.15rem;
}
.gm-quick-info h4[b-3wj1xskfee] {
    font-size: .92rem;
    font-weight: 700;
    margin: 0 0 .75rem;
}
.gm-info-row[b-3wj1xskfee] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4rem 0;
    font-size: .84rem;
    border-bottom: 1px solid var(--ea-border-subtle);
}
.gm-info-row:last-child[b-3wj1xskfee] { border-bottom: none; }
.gm-info-row span:first-child[b-3wj1xskfee] { color: var(--ea-neutral-60); }
.gm-info-row span:last-child[b-3wj1xskfee]  { font-weight: 600; color: var(--ea-black); }

/* ─── Learning Outcomes List ───────────────────────────────────── */
.gm-outcomes-list[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.gm-outcomes-item[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 0;
    border-bottom: 1px solid var(--ea-border-subtle);
}
.gm-outcomes-item:last-child[b-3wj1xskfee] { border-bottom: none; }

/* ─── Why Play List ────────────────────────────────────────────── */
.gm-whyplay-list[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.gm-whyplay-item[b-3wj1xskfee] {
    display: flex;
    align-items: start;
    gap: .5rem;
    padding: .65rem .75rem;
    background: var(--ea-neutral-2);
    border-radius: var(--ea-radius-sm);
    border: 1px solid var(--ea-border-subtle);
}

/* ─── Rooms List ───────────────────────────────────────────────── */
.gm-rooms-list[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.gm-room-item[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .65rem;
    justify-content: space-between;
    padding: .55rem .75rem;
    background: var(--ea-neutral-2);
    border-radius: var(--ea-radius-sm);
    border: 1px solid var(--ea-border-subtle);
    cursor: pointer;
    transition: background 120ms, border-color 120ms;
}
.gm-room-item:hover[b-3wj1xskfee] {
    background: var(--ea-blue-10);
    border-color: var(--ea-blue-30);
}
.gm-room-item.gm-dragging[b-3wj1xskfee] {
    opacity: .4;
    border-style: dashed;
}
.gm-room-item.gm-drag-over[b-3wj1xskfee] {
    border-color: var(--ea-blue);
    box-shadow: 0 -2px 0 0 var(--ea-blue);
    background: var(--ea-blue-10);
}
.gm-drag-handle[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    color: var(--ea-neutral-40, #9e9e9e);
    padding: .15rem;
    border-radius: 4px;
    transition: color 120ms;
    flex-shrink: 0;
}
.gm-drag-handle:hover[b-3wj1xskfee] {
    color: var(--ea-neutral-60, #6e6e6e);
}
.gm-room-item.gm-dragging .gm-drag-handle[b-3wj1xskfee] {
    cursor: grabbing;
}
.gm-room-thumb[b-3wj1xskfee] {
    width: 48px;
    height: 48px;
    border-radius: var(--ea-radius-sm);
    background-size: cover;
    background-position: center;
    background-color: var(--ea-neutral-4, #f5f5f5);
    border: 1px solid var(--ea-border-subtle, #f0f0f4);
    flex-shrink: 0;
}
.gm-room-thumb-empty[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ea-neutral-20, #c8c8c8);
}

/* ─── Props Table Wrapper ──────────────────────────────────────── */
.gm-props-table[b-3wj1xskfee] {
    margin-top: .25rem;
}

/* ─── Behaviour Grid ───────────────────────────────────────────── */
.gm-behaviour-grid[b-3wj1xskfee] {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.gm-behaviour-item[b-3wj1xskfee] {
    display: inline-flex;
    align-items: center;
    padding: .12rem .45rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ─── Import Dialog ────────────────────────────────────────────── */
/* ─── Import JSON Dialog (layout-only; shell uses shared as-* styles) ── */
.gm-import-layout[b-3wj1xskfee] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}
.gm-import-source[b-3wj1xskfee] {
    padding: 1.15rem;
    border-right: 1px solid var(--ea-border-subtle, #f0f0f4);
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.gm-import-dropzone[b-3wj1xskfee] {
    border: 2px dashed var(--ea-border, #e5e7eb);
    border-radius: var(--ea-radius-xl);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 200ms, background 200ms;
}
.gm-import-dropzone:hover[b-3wj1xskfee] {
    border-color: var(--ea-blue);
    background: var(--ea-blue-10, rgba(77,46,253,.06));
}
.gm-import-dropzone svg[b-3wj1xskfee] { color: var(--ea-neutral-20, #ccc); margin-bottom: .4rem; }
.gm-import-dropzone p[b-3wj1xskfee] { font-size: .84rem; color: var(--ea-neutral-40, #999); margin: .15rem 0; }
.gm-drop-cta[b-3wj1xskfee] { color: var(--ea-blue); font-weight: 600; cursor: pointer; }
.gm-drop-cta:hover[b-3wj1xskfee] { text-decoration: underline; }
.gm-import-divider[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--ea-neutral-30, #bbb);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.gm-import-divider[b-3wj1xskfee]::before, .gm-import-divider[b-3wj1xskfee]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ea-border, #e5e7eb);
}
.gm-import-textarea[b-3wj1xskfee] {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: .78rem;
    min-height: 120px;
    border-radius: var(--ea-radius-xl);
}
.gm-import-error[b-3wj1xskfee] {
    font-size: .8rem;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--ea-radius-xl);
    padding: .45rem .65rem;
}
.gm-import-preview[b-3wj1xskfee] {
    padding: 1.15rem;
    overflow-y: auto;
    max-height: 480px;
}
.gm-import-preview h5[b-3wj1xskfee] {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ea-neutral-80, #333);
    margin: 0 0 .6rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.gm-preview-grid[b-3wj1xskfee] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem .75rem;
    margin-bottom: .85rem;
}
.gm-preview-field[b-3wj1xskfee] { font-size: .82rem; }
.gm-pf-label[b-3wj1xskfee] {
    display: block;
    color: var(--ea-neutral-40, #999);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.gm-pf-value[b-3wj1xskfee] {
    display: block;
    color: var(--ea-neutral-80, #333);
    font-weight: 600;
    margin-top: 1px;
}
.gm-preview-rooms[b-3wj1xskfee] { margin-top: .15rem; }
.gm-room-pill[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .35rem .65rem;
    border-radius: var(--ea-radius-xl);
    background: var(--ea-neutral-2, #fafafa);
    font-size: .8rem;
    margin-bottom: .3rem;
}
.gm-room-pill-name[b-3wj1xskfee] { font-weight: 600; color: var(--ea-neutral-80, #333); }
.gm-room-pill-meta[b-3wj1xskfee] { color: var(--ea-neutral-40, #999); font-size: .74rem; }
.gm-preview-empty[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--ea-neutral-30, #bbb);
    text-align: center;
}
.gm-preview-empty svg[b-3wj1xskfee] { margin-bottom: .5rem; }
.gm-preview-empty p[b-3wj1xskfee] { font-size: .84rem; margin: 0; }
@media (max-width: 640px) {
    .gm-import-layout[b-3wj1xskfee] { grid-template-columns: 1fr; }
    .gm-import-source[b-3wj1xskfee] { border-right: none; border-bottom: 1px solid var(--ea-border-subtle, #f0f0f4); }
}

/* ─── Delete Dialog ────────────────────────────────────────────── */
.gm-danger-card[b-3wj1xskfee] {
    background: var(--ea-surface-card);
    border-radius: var(--ea-radius-lg);
    padding: 1.25rem;
    max-width: 460px;
    margin: auto;
    box-shadow: var(--ea-shadow-64);
}
.gm-danger-card p[b-3wj1xskfee] {
    font-size: .88rem;
    color: var(--ea-neutral-60);
    line-height: 1.6;
    margin: .5rem 0;
}
.gm-danger-card svg[b-3wj1xskfee] {
    width: 24px;
    height: 24px;
    color: #dc2626;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .gm-detail-layout[b-3wj1xskfee] { grid-template-columns: 1fr; }
    .gm-form-grid[b-3wj1xskfee] { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .gm-detail-sidebar[b-3wj1xskfee] { display: none; }
}

/* ─── Sprite / Display Data Cards ──────────────────────────────── */
.gm-sprite-item[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: .55rem .75rem;
    background: var(--ea-neutral-2);
    border-radius: var(--ea-radius-sm);
    border: 1px solid var(--ea-border-subtle);
}
.gm-sprite-item-header[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.gm-sprite-item-header span[b-3wj1xskfee] {
    font-size: .78rem;
    font-weight: 600;
}
.gm-res-badge[b-3wj1xskfee] {
    font-size: .72rem !important;
    font-weight: 700 !important;
    color: var(--ea-dark);
    background: var(--ea-blue-10, #efecff);
    padding: .15rem .5rem;
    border-radius: 999px;
    white-space: nowrap;
}
.gm-sprite-meta[b-3wj1xskfee] {
    font-size: .72rem;
    color: var(--ea-neutral-40);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .15rem;
}

/* Tabbed gallery */
.gm-sprite-tabbed[b-3wj1xskfee] {
    border: 1px solid var(--ea-border-subtle);
    border-radius: var(--ea-radius-sm);
    overflow: hidden;
}
.gm-sprite-tabs[b-3wj1xskfee] {
    display: flex;
    border-bottom: 2px solid var(--ea-border-subtle, #f0f0f4);
}
.gm-sprite-tab[b-3wj1xskfee] {
    flex: 1;
    text-align: center;
    padding: .4rem .25rem;
    font-size: .62rem;
    font-weight: 600;
    color: var(--ea-neutral-40);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .03em;
    transition: color .15s, border-color .15s;
}
.gm-sprite-tab:hover[b-3wj1xskfee] {
    color: var(--ea-neutral-60);
}
.gm-sprite-tab.active[b-3wj1xskfee] {
    color: var(--ea-blue);
    border-bottom-color: var(--ea-blue);
}
.gm-sprite-gallery[b-3wj1xskfee] {
    background: linear-gradient(135deg, var(--ea-neutral-2, #fafafa), var(--ea-neutral-4, #f5f5f5));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}
.gm-sprite-gallery img[b-3wj1xskfee] {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.12));
}
.gm-sprite-empty[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: var(--ea-neutral-40);
}
.gm-sprite-empty svg[b-3wj1xskfee] {
    opacity: .4;
}
.gm-sprite-empty span[b-3wj1xskfee] {
    font-size: .7rem;
}
.gm-sprite-tab-upload[b-3wj1xskfee] {
    display: flex;
    justify-content: flex-end;
    padding: .35rem .5rem;
    background: var(--ea-neutral-2, #fafafa);
    border-top: 1px solid var(--ea-border-subtle, #f0f0f4);
}
.gm-upload-btn[b-3wj1xskfee] {
    font-size: .62rem;
    font-weight: 600;
    color: var(--ea-blue);
    background: var(--ea-blue-10, #efecff);
    border: 1px dashed var(--ea-blue-30, #c7befe);
    border-radius: var(--ea-radius-sm);
    padding: .2rem .4rem;
    cursor: pointer;
    transition: background .15s, border-style .15s;
    display: flex;
    align-items: center;
    gap: .2rem;
}
.gm-upload-btn:hover[b-3wj1xskfee] {
    background: var(--ea-blue-30, #c7befe);
    border-style: solid;
}
.gm-cover-preview[b-3wj1xskfee] {
    margin-top: .4rem;
    border-radius: var(--ea-radius-sm);
    overflow: hidden;
    background: linear-gradient(135deg, var(--ea-neutral-2, #fafafa), var(--ea-neutral-4, #f5f5f5));
    border: 1px solid var(--ea-border-subtle, #f0f0f4);
}
.gm-cover-preview img[b-3wj1xskfee] {
    width: 100%;
    height: auto;
    display: block;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.1));
}

/* ─── Animated Segments ────────────────────────────────────────── */
.gm-segment-card[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
    padding: .65rem .75rem;
    background: var(--ea-neutral-2);
    border-radius: var(--ea-radius-sm);
    border: 1px dashed var(--ea-border);
}
.gm-segment-header[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.gm-segment-header .gm-segment-label[b-3wj1xskfee] {
    font-size: .72rem;
    font-weight: 600;
    color: var(--ea-blue);
}
.gm-segment-type-badge[b-3wj1xskfee] {
    font-size: .65rem;
    padding: .15rem .4rem;
    border-radius: var(--ea-radius-sm);
    background: var(--stempink);
    color: #fff;
    font-weight: 600;
}
.gm-words-list[b-3wj1xskfee] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding-left: .5rem;
    border-left: 2px solid var(--stempink);
}
.gm-word-item[b-3wj1xskfee] {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
}
.gm-word-count[b-3wj1xskfee] {
    font-size: .65rem;
    padding: .1rem .3rem;
    border-radius: 3px;
    background: var(--ea-neutral-6);
    color: var(--ea-neutral-60);
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}
.gm-word-text[b-3wj1xskfee] {
    color: var(--ea-neutral-80, #333);
    font-weight: 500;
}
.gm-add-segment-form[b-3wj1xskfee] {
    margin-top: .75rem;
    padding: .75rem;
    border: 1px dashed var(--ea-border);
    border-radius: var(--ea-radius-sm);
    background: var(--ea-neutral-2);
}
.gm-add-segment-form .gm-form-title[b-3wj1xskfee] {
    font-size: .72rem;
    font-weight: 600;
    color: var(--ea-blue);
    margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════════════════
   StationeryStatCard styles (moved from educator-admin.css tail)
   ═══════════════════════════════════════════════════════════════ */
[b-3wj1xskfee] .ssc-card {
    background: #fff;
    border-radius: var(--ea-radius, 16px);
    padding: 1.35rem 1.25rem;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
    border: 1px solid var(--ea-border, #e2e4ea);
    position: relative;
    overflow: hidden;
    min-height: 145px;
    transition: box-shadow 0.2s, transform 0.2s;
}
[b-3wj1xskfee] .ssc-card:hover {
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.10);
    transform: translateY(-2px);
}
[b-3wj1xskfee] .ssc-triangles {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 260px;
    pointer-events: none;
    overflow: hidden;
}
[b-3wj1xskfee] .ssc-triangles svg {
    position: absolute;
    right: 0;
    top: 0;
    width: 260px;
    height: 100%;
}
[b-3wj1xskfee] .ssc-content {
    position: relative;
    z-index: 1;
}
[b-3wj1xskfee] .ssc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    margin-bottom: 0.85rem;
}
[b-3wj1xskfee] .ssc-icon svg {
    width: 20px;
    height: 20px;
}
[b-3wj1xskfee] .ssc-label {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ea-neutral-60, #667085);
}
[b-3wj1xskfee] .ssc-value {
    font-family: var(--ea-font, 'Poppins', sans-serif);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}
[b-3wj1xskfee] .ssc-change {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 0.2rem;
    color: var(--ea-neutral-60, #667085);
}
[b-3wj1xskfee] .ssc-change.positive { color: var(--stemgreen-dark, #2b9d5e); }
[b-3wj1xskfee] .ssc-change.negative { color: #ef4444; }
[b-3wj1xskfee] .ssc-change.neutral  { color: var(--ea-neutral-40, #98a2b3); }
[b-3wj1xskfee] .ssc-progress {
    height: 4px;
    border-radius: 2px;
    background: #f0f1f4;
    margin-top: 0.5rem;
    overflow: hidden;
}
[b-3wj1xskfee] .ssc-progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.4s ease;
}
[b-3wj1xskfee] .ssc-blue .ssc-icon    { background: var(--stemblue-10, #F1EEFF); color: var(--stemblue, #4D2EFD); }
[b-3wj1xskfee] .ssc-blue .ssc-value   { color: var(--stemblue, #4D2EFD); }
[b-3wj1xskfee] .ssc-blue .ssc-progress-fill { background: var(--stemblue, #4D2EFD); }
[b-3wj1xskfee] .ssc-green .ssc-icon   { background: var(--stemgreen-10, #E4FFF0); color: var(--stemgreen-dark, #2b9d5e); }
[b-3wj1xskfee] .ssc-green .ssc-value  { color: var(--stemgreen-dark, #2b9d5e); }
[b-3wj1xskfee] .ssc-green .ssc-progress-fill { background: var(--stemgreen-dark, #2b9d5e); }
[b-3wj1xskfee] .ssc-orange .ssc-icon  { background: var(--stemorange-10, #FFF4E7); color: var(--stemorange, #FE920D); }
[b-3wj1xskfee] .ssc-orange .ssc-value { color: var(--stemorange, #FE920D); }
[b-3wj1xskfee] .ssc-orange .ssc-progress-fill { background: var(--stemorange, #FE920D); }
[b-3wj1xskfee] .ssc-pink .ssc-icon    { background: var(--stempink-10, #FEF1FB); color: var(--stempink, #F04FCD); }
[b-3wj1xskfee] .ssc-pink .ssc-value   { color: var(--stempink, #F04FCD); }
[b-3wj1xskfee] .ssc-pink .ssc-progress-fill  { background: var(--stempink, #F04FCD); }
/* /Components/Users/AdminNewsletterEditorView.razor.rz.scp.css */
/* ═══════════════════════ Newsletter Editor - Component-specific styles ═══════════════════════ */
/* Layout, cards, form fields use global be-* (blog editor) classes from educator-admin.css */

/* ── Audience Chips ── */

.nle-audience-chips[b-zw3mdcyjrx] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.nle-chip[b-zw3mdcyjrx] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--ea-radius-xl, 20px);
    font-size: .8225rem;
    font-weight: 500;
    background: var(--ea-blue-10, #eff6ff);
    color: var(--ea-blue, #2563eb);
    border: 1px solid var(--ea-blue-10, #dbeafe);
}

.nle-chip-remove[b-zw3mdcyjrx] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    color: inherit;
    opacity: 0.6;
    padding: 0;
    margin-left: 2px;
}

.nle-chip-remove:hover[b-zw3mdcyjrx] {
    opacity: 1;
}

/* ── Template Grid ── */

.nle-template-grid[b-zw3mdcyjrx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.nle-template-option[b-zw3mdcyjrx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border: 1px solid var(--ea-border, #e5e7eb);
    border-radius: var(--ea-radius-md, 10px);
    background: var(--ea-surface-card, #fff);
    cursor: pointer;
    font-size: .75rem;
    color: var(--ea-neutral-40, #6b7280);
    transition: border-color 150ms, color 150ms, background 150ms;
}

.nle-template-option:hover[b-zw3mdcyjrx] {
    border-color: var(--ea-purple, #7c3aed);
    color: var(--ea-purple, #7c3aed);
}

.nle-template-option.selected[b-zw3mdcyjrx] {
    border-color: var(--ea-purple, #7c3aed);
    background: var(--ea-purple-5, #f5f3ff);
    color: var(--ea-purple, #7c3aed);
}

.nle-template-option svg[b-zw3mdcyjrx] {
    width: 20px;
    height: 20px;
}

/* ── Toggle ── */

.nle-toggle-row[b-zw3mdcyjrx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.nle-toggle[b-zw3mdcyjrx] {
    position: relative;
    width: 40px;
    height: 22px;
    border-radius: 11px;
    border: none;
    background: var(--ea-border, #d1d5db);
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.nle-toggle.on[b-zw3mdcyjrx] {
    background: var(--ea-purple, #7c3aed);
}

.nle-toggle-knob[b-zw3mdcyjrx] {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nle-toggle.on .nle-toggle-knob[b-zw3mdcyjrx] {
    transform: translateX(18px);
}

/* ── Info Rows ── */

.nle-info-row[b-zw3mdcyjrx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--ea-border-subtle, #f3f4f6);
}

.nle-info-row:last-child[b-zw3mdcyjrx] {
    border-bottom: none;
}

.nle-info-value[b-zw3mdcyjrx] {
    font-size: .8225rem;
    color: var(--ea-black, #111827);
}
/* /Components/Users/CreateAssignmentView.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   CreateAssignmentView – scoped styles (cap-* prefix)
   Page-based assignment creation with sidebar + modals
   ═══════════════════════════════════════════════════════════════ */

/* ── Back link ── */
.cap-back[b-40ac8n9kt1] {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ea-neutral-40);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color .15s;
    cursor: pointer;
}

.cap-back:hover[b-40ac8n9kt1] {
    color: var(--ea-blue);
}

.cap-back svg[b-40ac8n9kt1] {
    width: 16px;
    height: 16px;
}

/* ── Page header ── */
.cap-header[b-40ac8n9kt1] {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.cap-header-icon[b-40ac8n9kt1] {
    width: 44px;
    height: 44px;
    border-radius: var(--ea-radius-md, 8px);
    background: var(--ea-blue-10);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.cap-header-icon svg[b-40ac8n9kt1] {
    width: 22px;
    height: 22px;
    color: var(--ea-blue);
}

.cap-header h1[b-40ac8n9kt1] {
    font-size: 1.25rem;
    font-weight: 800;
}

.cap-header p[b-40ac8n9kt1] {
    font-size: .82rem;
    color: var(--ea-neutral-40);
    margin-top: .1rem;
}

/* ── Two-column layout ── */
.cap-layout[b-40ac8n9kt1] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 780px) {
    .cap-layout[b-40ac8n9kt1] {
        grid-template-columns: 1fr;
    }
}

/* ── Card ── */
.cap-card[b-40ac8n9kt1] {
    background: var(--ea-white);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg, 14px);
    padding: 1.5rem;
    box-shadow: var(--ea-shadow-4);
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.cap-card + .cap-card[b-40ac8n9kt1] {
    margin-top: 1.25rem;
}

.cap-card-title[b-40ac8n9kt1] {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ea-neutral-40);
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.cap-card-title svg[b-40ac8n9kt1] {
    width: 16px;
    height: 16px;
    color: var(--ea-blue);
}

/* ── Form helpers ── */
.cap-optional[b-40ac8n9kt1] {
    font-weight: 400;
    color: var(--ea-neutral-40);
    text-transform: none;
    letter-spacing: 0;
}

.cap-row[b-40ac8n9kt1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

@media (max-width: 640px) {
    .cap-row[b-40ac8n9kt1] {
        grid-template-columns: 1fr;
    }
}

/* ── Game picker (image cards) ── */
.cap-game-grid[b-40ac8n9kt1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

@media (max-width: 900px) {
    .cap-game-grid[b-40ac8n9kt1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cap-game-grid[b-40ac8n9kt1] {
        grid-template-columns: 1fr;
    }
}

.cap-game-card[b-40ac8n9kt1] {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--ea-border);
    border-radius: var(--ea-radius-md, 8px);
    overflow: hidden;
    cursor: pointer;
    transition: all .15s;
    background: var(--ea-white);
    position: relative;
}

.cap-game-card:hover[b-40ac8n9kt1] {
    border-color: var(--ea-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.cap-game-card.selected[b-40ac8n9kt1] {
    border-color: var(--ea-blue);
    box-shadow: 0 0 0 3px var(--ea-blue-10);
}

.cap-game-img[b-40ac8n9kt1] {
    height: 80px;
    background-size: cover;
    background-position: center;
    background-color: var(--ea-neutral-4, #f5f5f7);
    position: relative;
}

.cap-game-badge[b-40ac8n9kt1] {
    position: absolute;
    top: .4rem;
    right: .4rem;
    padding: .15rem .5rem;
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 700;
}

.cap-game-badge.published[b-40ac8n9kt1] {
    background: var(--ea-green);
    color: #064e3b;
}

.cap-game-badge.coming-soon[b-40ac8n9kt1] {
    background: var(--ea-orange);
    color: white;
}

.cap-game-body[b-40ac8n9kt1] {
    padding: .6rem .7rem;
}

.cap-game-title[b-40ac8n9kt1] {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ea-black);
    margin-bottom: .1rem;
}

.cap-game-meta[b-40ac8n9kt1] {
    font-size: .68rem;
    color: var(--ea-neutral-40);
}

.cap-game-check[b-40ac8n9kt1] {
    position: absolute;
    top: .4rem;
    left: .4rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    transition: all .15s;
}

.cap-game-card.selected .cap-game-check[b-40ac8n9kt1] {
    background: var(--ea-blue);
    border-color: var(--ea-blue);
}

.cap-game-card.selected .cap-game-check[b-40ac8n9kt1]::after {
    content: '✓';
    color: white;
    font-size: .7rem;
    font-weight: 700;
}

/* ── Sidebar (sticky) ── */
.cap-sidebar[b-40ac8n9kt1] {
    position: sticky;
    top: 1rem;
}

/* ── Action sidebar (ser-action-sidebar pattern) ── */
.cap-action-sidebar[b-40ac8n9kt1] {
    background: var(--ea-white);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg, 14px);
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    box-shadow: var(--ea-shadow-4);
}

.cap-action-sidebar .cap-btn[b-40ac8n9kt1] {
    width: 100%;
    justify-content: center;
}

/* ── Buttons (pill-shaped, ser-btn pattern) ── */
.cap-btn[b-40ac8n9kt1] {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.1rem;
    border-radius: var(--ea-radius-xl, 18px);
    font-family: var(--ea-font);
    font-size: .8225rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .15s;
}

.cap-btn svg[b-40ac8n9kt1] {
    width: 16px;
    height: 16px;
}

.cap-btn.primary[b-40ac8n9kt1] {
    background: var(--ea-green);
    color: var(--ea-blue);
    border-color: var(--ea-green);
}

.cap-btn.primary:hover[b-40ac8n9kt1] {
    background: #5dfca0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.cap-btn.secondary[b-40ac8n9kt1] {
    background: var(--ea-white);
    color: var(--ea-blue);
    border-color: var(--ea-blue-30, #b8aafe);
}

.cap-btn.secondary:hover[b-40ac8n9kt1] {
    background: var(--ea-blue-10);
}

/* ── Summary sidebar meta (ser-sidebar-meta pattern) ── */
.cap-sidebar-meta[b-40ac8n9kt1] {
    background: var(--ea-white);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-lg, 14px);
    overflow: hidden;
    box-shadow: var(--ea-shadow-4);
    margin-top: .75rem;
}

.cap-sidebar-meta-title[b-40ac8n9kt1] {
    font-size: .8225rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ea-neutral-60);
    padding: .85rem 1.1rem .5rem;
    line-height: 1.4;
}

.cap-sidebar-meta-row[b-40ac8n9kt1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1.1rem;
    border-bottom: 1px solid var(--ea-border-subtle, #f0f0f4);
}

.cap-sidebar-meta-row:last-child[b-40ac8n9kt1] {
    border-bottom: none;
}

.cap-sidebar-meta-row-left[b-40ac8n9kt1] {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8225rem;
    color: var(--ea-neutral-60);
}

.cap-sidebar-meta-row-left svg[b-40ac8n9kt1] {
    width: 14px;
    height: 14px;
    opacity: .65;
}

.cap-sidebar-meta-row-val[b-40ac8n9kt1] {
    font-size: .82rem;
    font-weight: 600;
    text-align: right;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cap-sidebar-meta-row-val.blue[b-40ac8n9kt1] {
    color: var(--ea-blue);
}

.cap-sidebar-meta-row-val.green[b-40ac8n9kt1] {
    color: var(--ea-green-dark, #2b9d5e);
}

.cap-sidebar-meta-row-val.orange[b-40ac8n9kt1] {
    color: var(--ea-orange);
}

.cap-sidebar-meta-tags[b-40ac8n9kt1] {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
    padding: .35rem 1.1rem .75rem;
}

.cap-sidebar-meta-tag[b-40ac8n9kt1] {
    padding: .12rem .45rem;
    background: var(--ea-blue-10);
    border-radius: 4px;
    font-size: .68rem;
    font-weight: 600;
    color: var(--ea-blue);
}

/* ── Notify toggle ── */
.cap-notify[b-40ac8n9kt1] {
    display: flex;
    align-items: center;
    gap: .55rem;
    cursor: pointer;
    font-size: .84rem;
    font-weight: 600;
    color: var(--ea-blue);
    padding: .5rem 0;
}

/* ── Assign Students modal: horizontal layout ── */
[b-40ac8n9kt1] .cap-students-modal {
    max-width: 680px;
}

.cap-assign-cols[b-40ac8n9kt1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
    border-top: 1px solid var(--ea-border-subtle, #f0f0f4);
    border-bottom: 1px solid var(--ea-border-subtle, #f0f0f4);
}

.cap-assign-col[b-40ac8n9kt1] {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.cap-assign-col + .cap-assign-col[b-40ac8n9kt1] {
    border-left: 1px solid var(--ea-border-subtle, #f0f0f4);
}

.cap-assign-col-header[b-40ac8n9kt1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cap-toggle-all[b-40ac8n9kt1] {
    font-family: var(--ea-font);
    font-size: .8225rem;
    font-weight: 600;
    color: var(--ea-blue);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 150ms;
}

.cap-toggle-all:hover[b-40ac8n9kt1] {
    color: var(--ea-blue-90);
    text-decoration: underline;
}

/* ── Group list (mirrors StudentPicker sp-list pattern) ── */
.cap-group-list[b-40ac8n9kt1] {
    max-height: 208px;
    overflow-y: auto;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-sm);
    background: var(--ea-white);
    margin-top: .35rem;
}

.cap-group-list[b-40ac8n9kt1]::-webkit-scrollbar { width: 6px; }
.cap-group-list[b-40ac8n9kt1]::-webkit-scrollbar-track { background: transparent; }
.cap-group-list[b-40ac8n9kt1]::-webkit-scrollbar-thumb { background: var(--ea-neutral-20); border-radius: 3px; }
.cap-group-list[b-40ac8n9kt1]::-webkit-scrollbar-thumb:hover { background: var(--ea-neutral-40); }

[b-40ac8n9kt1] .cap-group-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .75rem;
    cursor: pointer;
    border-bottom: 1px solid var(--ea-border-subtle, #f0f0f4);
    transition: background 120ms;
}

[b-40ac8n9kt1] .cap-group-item:last-child {
    border-bottom: none;
}

[b-40ac8n9kt1] .cap-group-item:hover {
    background: var(--ea-blue-10);
}

[b-40ac8n9kt1] .cap-group-item.selected {
    background: var(--ea-blue-10);
}

.cap-group-item-info[b-40ac8n9kt1] {
    flex: 1;
    min-width: 0;
}

.cap-group-item-name[b-40ac8n9kt1] {
    font-family: var(--ea-font);
    font-size: .85rem;
    font-weight: 500;
    color: var(--ea-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cap-group-item-meta[b-40ac8n9kt1] {
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
}

/* ── Empty state ── */
.cap-empty-state[b-40ac8n9kt1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: 1.5rem 1rem;
    color: var(--ea-neutral-40);
    flex: 1;
}

.cap-empty-state svg[b-40ac8n9kt1] {
    width: 28px;
    height: 28px;
    opacity: .45;
}

.cap-empty-state p[b-40ac8n9kt1] {
    font-size: .78rem;
    margin: 0;
}

/* ── Selection summary bar ── */
.cap-assign-summary[b-40ac8n9kt1] {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
    padding: .5rem 1.25rem .75rem;
}

.cap-assign-summary .count-badge[b-40ac8n9kt1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 .4rem;
    border-radius: 10px;
    font-size: .8225rem;
    font-weight: 700;
    background: var(--ea-neutral-6, #efefef);
    color: var(--ea-neutral-40);
    transition: all 200ms;
}

.cap-assign-summary .count-badge.has-selection[b-40ac8n9kt1] {
    background: var(--ea-blue);
    color: #fff;
}

@media (max-width: 640px) {
    .cap-assign-cols[b-40ac8n9kt1] {
        grid-template-columns: 1fr;
    }

    .cap-assign-col + .cap-assign-col[b-40ac8n9kt1] {
        border-left: none;
        border-top: 1px solid var(--ea-border-subtle, #f0f0f4);
    }
}

/* ── Input border-radius override ── */
[b-40ac8n9kt1] .as-input,
[b-40ac8n9kt1] .as-textarea {
    border-radius: var(--ea-radius-sm, 8px);
}

/* ── EaSelect: fit to content, not full width ── */
[b-40ac8n9kt1] .ea-dropdown {
    width: fit-content;
    min-width: 180px;
}
/* /Components/Users/DistrictDashboardView.razor.rz.scp.css */
/* ══════════════════════════════════════════════════
   DISTRICT DASHBOARD  (dd-* scoped styles)
   ══════════════════════════════════════════════════ */

/* ── Design tokens ────────────────────────────── */
:root[b-iuxqyzehon] {
    --dd-slate:       #3b4a6b;
    --dd-slate-bg:    rgba(59, 74, 107, 0.10);
    --dd-slate-hover: #2d3a55;
}

/* ── Metrics strip ────────────────────────────── */
[b-iuxqyzehon] .dd-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

[b-iuxqyzehon] .dd-metric {
    background: var(--ea-card-bg, #fff);
    border: 1px solid var(--ea-border, #e2e4ea);
    border-radius: var(--ea-radius, 12px);
    padding: 1.15rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

[b-iuxqyzehon] .dd-metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[b-iuxqyzehon] .dd-metric-icon svg {
    width: 22px;
    height: 22px;
}

[b-iuxqyzehon] .dd-metric-value {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
}

[b-iuxqyzehon] .dd-metric-label {
    font-size: .75rem;
    color: var(--ea-text-muted, #8a8da0);
    margin-top: .15rem;
}

/* ── Content grid ─────────────────────────────── */
[b-iuxqyzehon] .dd-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

[b-iuxqyzehon] .dd-span-full {
    grid-column: 1 / -1;
}

/* ── Cards ────────────────────────────────────── */
[b-iuxqyzehon] .dd-card {
    background: var(--ea-card-bg, #fff);
    border: 1px solid var(--ea-border, #e2e4ea);
    border-radius: var(--ea-radius, 12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    overflow: hidden;
}

[b-iuxqyzehon] .dd-card-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: .92rem;
    border-bottom: 1px solid var(--ea-border, #e2e4ea);
}

[b-iuxqyzehon] .dd-card-header svg {
    width: 18px;
    height: 18px;
    color: var(--dd-slate);
}

[b-iuxqyzehon] .dd-card-header-actions {
    margin-left: auto;
    display: flex;
    gap: .4rem;
    align-items: center;
}

[b-iuxqyzehon] .dd-card-body {
    padding: 1.1rem 1.25rem;
}

[b-iuxqyzehon] .dd-view-all {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    color: var(--ea-blue, #4D2EFD);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

[b-iuxqyzehon] .dd-view-all svg {
    width: 14px;
    height: 14px;
}

/* ── Tables ───────────────────────────────────── */
[b-iuxqyzehon] .dd-table {
    width: 100%;
}

[b-iuxqyzehon] .dd-table-header {
    display: grid;
    padding: .65rem 1.25rem;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ea-text-muted, #8a8da0);
    border-bottom: 1px solid var(--ea-border, #e2e4ea);
}

[b-iuxqyzehon] .dd-table-row {
    display: grid;
    padding: .75rem 1.25rem;
    align-items: center;
    font-size: .85rem;
    border-bottom: 1px solid var(--ea-border, #e2e4ea);
    transition: background 0.2s ease;
}

[b-iuxqyzehon] .dd-table-row:last-child {
    border-bottom: none;
}

[b-iuxqyzehon] .dd-table-row:hover {
    background: rgba(77, 46, 253, 0.08);
}

/* Institutions table grid - original 4 columns */
[b-iuxqyzehon] .dd-institutions-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 100px;
}

/* Institutions table grid - 6 columns (with Educators + Students) */
[b-iuxqyzehon] .dd-institutions-grid-6 {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 100px;
}

/* Game deployment table grid */
[b-iuxqyzehon] .dd-deploy-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 100px;
}

/* Licence table grid */
[b-iuxqyzehon] .dd-licence-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

/* ── Institution row avatar ───────────────────── */
[b-iuxqyzehon] .dd-institution-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--dd-slate);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .6rem;
    color: #fff;
    margin-right: .55rem;
    vertical-align: middle;
}

/* ── Tags ─────────────────────────────────────── */
[b-iuxqyzehon] .dd-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 99px;
    line-height: 1.5;
}

[b-iuxqyzehon] .dd-tag-active {
    background: rgba(43,157,94,.12);
    color: var(--ea-green-dark, #2b9d5e);
}

[b-iuxqyzehon] .dd-tag-inactive {
    background: rgba(138,141,160,.12);
    color: var(--ea-text-muted, #8a8da0);
}

[b-iuxqyzehon] .dd-tag-pending {
    background: rgba(254,146,13,.12);
    color: var(--ea-orange, #FE920D);
}

[b-iuxqyzehon] .dd-tag-success {
    background: rgba(43,157,94,.12);
    color: var(--ea-green-dark, #2b9d5e);
}

[b-iuxqyzehon] .dd-tag-warning {
    background: rgba(254,146,13,.12);
    color: var(--ea-orange, #FE920D);
}

[b-iuxqyzehon] .dd-tag-info {
    background: var(--dd-slate-bg);
    color: var(--dd-slate);
}

[b-iuxqyzehon] .dd-tag-danger {
    background: rgba(231,76,60,.12);
    color: var(--ea-red, #e74c3c);
}

/* ── Quick actions ────────────────────────────── */
[b-iuxqyzehon] .dd-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: .75rem;
}

[b-iuxqyzehon] .dd-quick-action {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1rem;
    background: var(--ea-card-bg, #fff);
    border: 1px solid var(--ea-border, #e2e4ea);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

[b-iuxqyzehon] .dd-quick-action:hover {
    border-color: var(--dd-slate);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

[b-iuxqyzehon] .dd-quick-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[b-iuxqyzehon] .dd-quick-action-icon svg {
    width: 18px;
    height: 18px;
}

[b-iuxqyzehon] .dd-quick-action-label {
    font-size: .84rem;
    font-weight: 600;
}

[b-iuxqyzehon] .dd-quick-action-desc {
    font-size: .72rem;
    color: var(--ea-text-muted, #8a8da0);
    margin-top: .1rem;
}

/* ── Action buttons (table) ───────────────────── */
[b-iuxqyzehon] .dd-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ea-text-muted, #8a8da0);
    padding: .3rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

[b-iuxqyzehon] .dd-action-btn:hover {
    background: rgba(77, 46, 253, 0.08);
    color: var(--ea-blue, #4D2EFD);
}

[b-iuxqyzehon] .dd-action-btn.danger:hover {
    background: rgba(231,76,60,.1);
    color: var(--ea-red, #e74c3c);
}

[b-iuxqyzehon] .dd-action-btn svg {
    width: 16px;
    height: 16px;
}

/* ── Activity feed ────────────────────────────── */
[b-iuxqyzehon] .dd-activity-item {
    display: flex;
    gap: .75rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--ea-border, #e2e4ea);
}

[b-iuxqyzehon] .dd-activity-item:last-child {
    border-bottom: none;
}

[b-iuxqyzehon] .dd-activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: .45rem;
    flex-shrink: 0;
}

[b-iuxqyzehon] .dd-activity-text {
    font-size: .84rem;
    line-height: 1.5;
}

[b-iuxqyzehon] .dd-activity-time {
    font-size: .72rem;
    color: var(--ea-text-muted, #8a8da0);
    margin-top: .15rem;
}

/* ── Licence summary panel ────────────────────── */
[b-iuxqyzehon] .dd-licence-panel {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(135deg, var(--dd-slate-bg), rgba(77,46,253,.06));
    border-radius: 10px;
}

[b-iuxqyzehon] .dd-licence-panel svg {
    width: 28px;
    height: 28px;
    color: var(--dd-slate);
    flex-shrink: 0;
}

[b-iuxqyzehon] .dd-licence-info {
    flex: 1;
}

[b-iuxqyzehon] .dd-licence-info strong {
    font-size: .92rem;
}

[b-iuxqyzehon] .dd-licence-info p {
    font-size: .78rem;
    color: var(--ea-text-muted, #8a8da0);
    margin-top: .15rem;
}

[b-iuxqyzehon] .dd-licence-badge {
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 99px;
    background: var(--dd-slate);
    color: #fff;
}

/* ── Stat bar (mini inline chart) ─────────────── */
[b-iuxqyzehon] .dd-stat-bar {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    background: var(--ea-border, #e2e4ea);
    margin-top: .35rem;
}

[b-iuxqyzehon] .dd-stat-bar-fill {
    height: 100%;
    border-radius: 3px;
}

/* ── Info banner ──────────────────────────────── */
[b-iuxqyzehon] .dd-info-banner {
    display: flex;
    gap: .85rem;
    padding: 1rem 1.15rem;
    background: var(--dd-slate-bg);
    border-radius: 10px;
    font-size: .84rem;
    line-height: 1.6;
    color: var(--ea-text, #1e1e2d);
}

[b-iuxqyzehon] .dd-info-banner svg {
    width: 20px;
    height: 20px;
    color: var(--dd-slate);
    flex-shrink: 0;
    margin-top: .15rem;
}

/* ── Filter bar ───────────────────────────────── */
[b-iuxqyzehon] .dd-filter-bar {
    display: flex;
    gap: .4rem;
}

[b-iuxqyzehon] .dd-filter-chip {
    font-size: .72rem;
    padding: .3rem .7rem;
    border-radius: 99px;
    border: 1px solid var(--ea-border, #e2e4ea);
    background: var(--ea-card-bg, #fff);
    cursor: pointer;
    color: var(--ea-text-muted, #8a8da0);
    font-weight: 500;
    transition: all 0.2s ease;
}

[b-iuxqyzehon] .dd-filter-chip:hover {
    border-color: var(--ea-blue, #4D2EFD);
    color: var(--ea-text, #1e1e2d);
}

[b-iuxqyzehon] .dd-filter-chip.active {
    background: var(--ea-blue, #4D2EFD);
    color: #fff;
    border-color: var(--ea-blue, #4D2EFD);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
    [b-iuxqyzehon] .dd-content-grid {
        grid-template-columns: 1fr;
    }

    [b-iuxqyzehon] .dd-institutions-grid,
    [b-iuxqyzehon] .dd-institutions-grid-6,
    [b-iuxqyzehon] .dd-deploy-grid,
    [b-iuxqyzehon] .dd-licence-grid,
    [b-iuxqyzehon] .dd-admins-grid {
        font-size: .78rem;
    }
}

/* ── Admin management grid ──────────────────────── */
[b-iuxqyzehon] .dd-admins-grid {
    grid-template-columns: 2fr 2fr 1fr 80px;
}

/* ── Danger action button styling ───────────────── */
[b-iuxqyzehon] .dd-action-btn-danger {
    color: var(--stempink, #f04fcd);
}

[b-iuxqyzehon] .dd-action-btn-danger:hover {
    background: rgba(240, 79, 205, .12);
    color: #d32f2f;
}

/* ── Danger button in modal ─────────────────────── */
[b-iuxqyzehon] .as-btn-danger {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .55rem 1.25rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

[b-iuxqyzehon] .as-btn-danger:hover {
    background: #b71c1c;
}

[b-iuxqyzehon] .as-btn-danger:disabled {
    background: #e57373;
    cursor: not-allowed;
}

/* ── Avatar cells (used in AdminDataTable rows) ── */
[b-iuxqyzehon] .id-cell-avatar {
    display: flex;
    align-items: center;
    gap: .65rem;
}

[b-iuxqyzehon] .id-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
/* /Components/Users/MyChangePassword.razor.rz.scp.css */
/* ── Password visibility toggle ── */
.mcp-toggle-visibility[b-fwr11e8mvx] {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ea-neutral-50, #6b7280);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.15s ease;
}

.mcp-toggle-visibility:hover[b-fwr11e8mvx] {
    color: var(--ea-neutral-80, #1f2937);
}

/* ── Password strength bar ── */
.mcp-strength[b-fwr11e8mvx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.mcp-strength-bar[b-fwr11e8mvx] {
    flex: 1;
    height: 4px;
    background: var(--ea-neutral-20, #e5e7eb);
    border-radius: 2px;
    overflow: hidden;
}

.mcp-strength-fill[b-fwr11e8mvx] {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.mcp-strength-fill.mcp-strength-weak[b-fwr11e8mvx] {
    background-color: #ef4444;
}

.mcp-strength-fill.mcp-strength-fair[b-fwr11e8mvx] {
    background-color: #f59e0b;
}

.mcp-strength-fill.mcp-strength-good[b-fwr11e8mvx] {
    background-color: #3b82f6;
}

.mcp-strength-fill.mcp-strength-strong[b-fwr11e8mvx] {
    background-color: #22c55e;
}

.mcp-strength-label[b-fwr11e8mvx] {
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 3rem;
}

.mcp-strength-label.mcp-strength-weak[b-fwr11e8mvx] {
    color: #ef4444;
}

.mcp-strength-label.mcp-strength-fair[b-fwr11e8mvx] {
    color: #f59e0b;
}

.mcp-strength-label.mcp-strength-good[b-fwr11e8mvx] {
    color: #3b82f6;
}

.mcp-strength-label.mcp-strength-strong[b-fwr11e8mvx] {
    color: #22c55e;
}

/* ── Input error state ── */
.mcp-input-error[b-fwr11e8mvx] {
    border-color: #ef4444 !important;
}
/* /Components/Users/StudentPicker.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   StudentPicker – scoped styles (sp-* prefix)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section header with toggle-all ─────────────────────────── */
.sp-section-header[b-gyynk6fp42] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sp-section-header .as-label[b-gyynk6fp42] {
    margin: 0;
}

.sp-toggle-all[b-gyynk6fp42] {
    font-family: var(--ea-font);
    font-size: .8225rem;
    font-weight: 600;
    color: var(--ea-blue);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 150ms;
}

.sp-toggle-all:hover[b-gyynk6fp42] {
    color: var(--ea-blue-90);
    text-decoration: underline;
}


/* ─── Search bar ─────────────────────────────────────────────── */
.sp-search[b-gyynk6fp42] {
    position: relative;
    margin-top: .35rem;
}

.sp-search-icon[b-gyynk6fp42] {
    position: absolute;
    left: .6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    color: var(--ea-neutral-40);
    pointer-events: none;
}

.sp-search-input[b-gyynk6fp42] {
    width: 100%;
    padding: .45rem .65rem .45rem 2rem;
    font-family: var(--ea-font);
    font-size: .8225rem;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-sm);
    background: var(--ea-white);
    outline: none;
    transition: border-color 150ms;
    box-sizing: border-box;
}

.sp-search-input:focus[b-gyynk6fp42] {
    border-color: var(--ea-blue);
}

.sp-search-clear[b-gyynk6fp42] {
    position: absolute;
    right: .4rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ea-neutral-40);
    padding: 2px;
    display: flex;
}

.sp-search-clear:hover[b-gyynk6fp42] {
    color: var(--ea-black);
}


/* ─── Scrollable checkbox list ───────────────────────────────── */
[b-gyynk6fp42] .sp-list {
    max-height: 208px;
    overflow-y: auto;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-sm);
    background: var(--ea-white);
    margin-top: .35rem;
}

[b-gyynk6fp42] .sp-list::-webkit-scrollbar {
    width: 6px;
}

[b-gyynk6fp42] .sp-list::-webkit-scrollbar-track {
    background: transparent;
}

[b-gyynk6fp42] .sp-list::-webkit-scrollbar-thumb {
    background: var(--ea-neutral-20);
    border-radius: 3px;
}

[b-gyynk6fp42] .sp-list::-webkit-scrollbar-thumb:hover {
    background: var(--ea-neutral-40);
}


/* ─── List item row ──────────────────────────────────────────── */
[b-gyynk6fp42] .sp-list-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .75rem;
    cursor: pointer;
    border-bottom: 1px solid var(--ea-border-subtle);
    transition: background 120ms;
}

[b-gyynk6fp42] .sp-list-item:last-child {
    border-bottom: none;
}

[b-gyynk6fp42] .sp-list-item:hover {
    background: var(--ea-blue-10);
}

[b-gyynk6fp42] .sp-list-item.selected {
    background: var(--ea-blue-10);
}

.sp-list-item-info[b-gyynk6fp42] {
    flex: 1;
    min-width: 0;
}

.sp-list-item-name[b-gyynk6fp42] {
    font-family: var(--ea-font);
    font-size: .85rem;
    font-weight: 500;
    color: var(--ea-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-list-item-meta[b-gyynk6fp42] {
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
}


/* ─── No match ───────────────────────────────────────────────── */
.sp-no-match[b-gyynk6fp42] {
    padding: .75rem;
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
    text-align: center;
}

/* ─── Selection summary ─────────────────────────────────────── */
.sp-summary[b-gyynk6fp42] {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--ea-font);
    font-size: .8225rem;
    color: var(--ea-neutral-40);
    margin-top: .35rem;
}

.sp-summary .count-badge[b-gyynk6fp42] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 .4rem;
    border-radius: 10px;
    font-size: .8225rem;
    font-weight: 700;
    background: var(--ea-neutral-6);
    color: var(--ea-neutral-40);
    transition: all 200ms;
}

.sp-summary .count-badge.has-selection[b-gyynk6fp42] {
    background: var(--ea-blue);
    color: #fff;
}


/* ─── Empty state ────────────────────────────────────────────── */
.sp-empty[b-gyynk6fp42] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: 1.2rem;
    color: var(--ea-neutral-40);
}

.sp-empty svg[b-gyynk6fp42] {
    width: 24px;
    height: 24px;
    opacity: .5;
}

.sp-empty p[b-gyynk6fp42] {
    font-size: .8225rem;
    margin: 0;
}
/* /Components/ValidationErrors.razor.rz.scp.css */
/* ── ValidationErrors component ─────────────────────────────── */

.validation-errors[b-zj1p68164y] {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 3px solid #dc2626;
    border-radius: 6px;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    font-family: var(--ea-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    font-size: .8225rem;
    color: #991b1b;
}

.validation-errors-header[b-zj1p68164y] {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: .25rem;
}

.validation-errors-list[b-zj1p68164y] {
    margin: .25rem 0 0;
    padding-left: 1.5rem;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: .125rem;
}

.validation-errors-list li[b-zj1p68164y] {
    line-height: 1.4;
}
