/* /Pages/BiometricConsolidation.razor.rz.scp.css */
/* /Pages/DashboardAODB.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   DashboardAODB - Airport Operations Dark Theme
   Full HD (1920×1080) and above optimized
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
.aodb-dashboard[b-lk0hbm0c5e] {
    --bg-primary: #0B1120;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.85);
    --bg-card-hover: rgba(23, 32, 52, 0.95);
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-emerald: #10B981;
    --accent-amber: #F59E0B;
    --accent-rose: #EF4444;
    --accent-purple: #8B5CF6;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --header-h: 80px;
    --gap: 10px;
    --row-unit: 89px;
}

/* ── Page Layout ── */
.aodb-dashboard[b-lk0hbm0c5e] {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: auto;
}

/* ── Loading Overlay ── */
.loading-overlay[b-lk0hbm0c5e] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(8px);
}

.loading-spinner[b-lk0hbm0c5e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner-ring[b-lk0hbm0c5e] {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin-b-lk0hbm0c5e 0.8s linear infinite;
}

@keyframes spin-b-lk0hbm0c5e {
    to { transform: rotate(360deg); }
}

.loading-text[b-lk0hbm0c5e] {
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* ── Header Bar ── */
.dashboard-header[b-lk0hbm0c5e] {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-icon[b-lk0hbm0c5e] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 12px;
    color: white;
}

.header-title h1[b-lk0hbm0c5e] {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-primary);
}

.header-subtitle[b-lk0hbm0c5e] {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.header-center[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-badge[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.header-right[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-logo[b-lk0hbm0c5e] {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.update-indicator[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pulse-dot[b-lk0hbm0c5e] {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: pulse-b-lk0hbm0c5e 2s ease-in-out infinite;
}

@keyframes pulse-b-lk0hbm0c5e {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.update-text[b-lk0hbm0c5e] {
    font-variant-numeric: tabular-nums;
}

/* ── Dashboard Grid ── */
.dashboard-grid[b-lk0hbm0c5e] {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-auto-rows: var(--row-unit);
    gap: var(--gap);
    padding: var(--gap);
}

/* ── Widget Base ── */
.dashboard-widget[b-lk0hbm0c5e] {
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
}

.dashboard-widget:hover[b-lk0hbm0c5e] {
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.08);
}

/* ── Info Card Widget ── */
.widget-card[b-lk0hbm0c5e] {
    container-type: size;
}

.info-card[b-lk0hbm0c5e] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 16px 10px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    border-top: 3px solid var(--card-accent, var(--accent-blue));
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.info-card[b-lk0hbm0c5e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--card-accent) 6%, transparent) 0%, transparent 100%);
    pointer-events: none;
}

.info-card__header[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.info-card__icon[b-lk0hbm0c5e] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--card-accent) 15%, transparent);
    border-radius: 8px;
    color: var(--card-accent);
    flex-shrink: 0;
}

.info-card__icon svg[b-lk0hbm0c5e] {
    width: 18px;
    height: 18px;
}

.info-card__title[b-lk0hbm0c5e] {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-card__value[b-lk0hbm0c5e] {
    font-size: clamp(24px, 5cqw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    position: relative;
    z-index: 1;
    font-variant-numeric: tabular-nums;
}

.info-card__breakdown[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 4px 0;
    position: relative;
    z-index: 1;
}

.info-card__stat[b-lk0hbm0c5e] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.stat-label[b-lk0hbm0c5e] {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.stat-value[b-lk0hbm0c5e] {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.info-card__divider[b-lk0hbm0c5e] {
    width: 1px;
    height: 28px;
    background: var(--border-subtle);
}

/* ── Graph Widget ── */
.widget-graph[b-lk0hbm0c5e] {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.graph-wrapper[b-lk0hbm0c5e] {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px 14px 6px;
    position: relative;
}

/* ── Widget Position Badge ── */
.widget-position-badge[b-lk0hbm0c5e] {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--accent-cyan);
    border-radius: 4px;
    padding: 2px 8px;
    z-index: 3;
    pointer-events: none;
    letter-spacing: 0.3px;
    font-variant-numeric: tabular-nums;
}

/* ── Widget Highlight ── */
.widget-highlighted[b-lk0hbm0c5e] {
    box-shadow: 0 0 0 3px var(--accent-cyan), 0 0 20px rgba(6, 182, 212, 0.4) !important;
}

.graph-title[b-lk0hbm0c5e] {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    margin-bottom: 4px;
    flex-shrink: 0;
}

/* Note: flex sizing for the chart is handled via ::deep .k-chart above,
   because TelerikChart is a child component and doesn't get scoped CSS attributes */

/* ── Telerik Chart Overrides (Dark Theme) ── */
[b-lk0hbm0c5e] .k-chart {
    background: transparent !important;
    flex: 1;
    min-height: 0;
}

[b-lk0hbm0c5e] .k-chart .k-chart-surface {
    background: transparent !important;
}

/* ── Messenger Bubble ── */
.aodb-bubble[b-lk0hbm0c5e] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 4px 16px rgba(59, 130, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.15);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
}

.aodb-bubble:hover[b-lk0hbm0c5e] {
    transform: scale(1.1);
    box-shadow:
        0 6px 24px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(139, 92, 246, 0.2);
}

.aodb-bubble:active[b-lk0hbm0c5e] {
    transform: scale(0.95);
}

/* ── Designer Window ── */
[b-lk0hbm0c5e] .designer-window .k-window-content {
    background: #1a2035 !important;
    color: var(--text-primary) !important;
    padding: 0 !important;
}

[b-lk0hbm0c5e] .designer-window .k-window-titlebar {
    background: #111827 !important;
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-subtle) !important;
}

[b-lk0hbm0c5e] .designer-window .k-window-actions-container .k-window-action {
    color: var(--text-secondary) !important;
}

.designer-title[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.designer-content[b-lk0hbm0c5e] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    max-height: 100%;
}

.designer-section[b-lk0hbm0c5e] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 16px;
}

.section-heading[b-lk0hbm0c5e] {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-count[b-lk0hbm0c5e] {
    background: var(--accent-blue);
    color: white;
    font-size: 11px;
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.filter-grid[b-lk0hbm0c5e] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.filter-item label[b-lk0hbm0c5e] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* ── Widget List ── */
.widget-list[b-lk0hbm0c5e] {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 200px;
    overflow-y: auto;
}

.widget-list-item[b-lk0hbm0c5e] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-light);
    font-size: 12px;
    transition: background 0.2s;
}

.widget-list-item:first-child[b-lk0hbm0c5e] {
    border-radius: 6px 6px 0 0;
}

.widget-list-item:last-child[b-lk0hbm0c5e] {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.widget-list-item:hover[b-lk0hbm0c5e] {
    background: rgba(255, 255, 255, 0.06);
}

.widget-list-item--active[b-lk0hbm0c5e] {
    background: rgba(6, 182, 212, 0.1) !important;
    border-color: var(--accent-cyan) !important;
}

.widget-item-num[b-lk0hbm0c5e] {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.widget-item-name[b-lk0hbm0c5e] {
    flex: 1;
    color: var(--text-primary);
    font-weight: 500;
}

.widget-item-pos[b-lk0hbm0c5e] {
    color: var(--accent-cyan);
    font-size: 10px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.widget-item-size[b-lk0hbm0c5e] {
    color: var(--text-muted);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}

/* ── Widget Edit/Replace Dropdown ── */
.widget-edit-wrapper[b-lk0hbm0c5e] {
    position: relative;
}

.btn-edit[b-lk0hbm0c5e] {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-edit:hover[b-lk0hbm0c5e] {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
}

.widget-replace-dropdown[b-lk0hbm0c5e] {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 50;
    min-width: 200px;
    max-height: 180px;
    overflow-y: auto;
    background: #d5dae3;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    padding: 4px 0;
    margin-top: 4px;
}

.widget-replace-option[b-lk0hbm0c5e] {
    padding: 8px 14px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.widget-replace-option:hover[b-lk0hbm0c5e] {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-primary);
}

.widget-replace-dropdown[b-lk0hbm0c5e]::-webkit-scrollbar {
    width: 4px;
}

.widget-replace-dropdown[b-lk0hbm0c5e]::-webkit-scrollbar-track {
    background: transparent;
}

.widget-replace-dropdown[b-lk0hbm0c5e]::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

/* ── Drag and Drop ── */
.widget-dragging[b-lk0hbm0c5e] {
    opacity: 0.5;
    box-shadow: 0 0 0 2px var(--accent-blue) !important;
}

.dashboard-widget[draggable="true"][b-lk0hbm0c5e] {
    cursor: grab;
}

.dashboard-widget[draggable="true"]:active[b-lk0hbm0c5e] {
    cursor: grabbing;
}

.btn-highlight[b-lk0hbm0c5e],
.btn-remove[b-lk0hbm0c5e] {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-highlight:hover[b-lk0hbm0c5e] {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
}

.widget-list-item--active .btn-highlight[b-lk0hbm0c5e] {
    color: var(--accent-cyan);
}

.btn-remove:hover[b-lk0hbm0c5e] {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-rose);
}

/* ── Add Widget Form ── */
.add-widget-form[b-lk0hbm0c5e] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row[b-lk0hbm0c5e] {
    display: flex;
    gap: 10px;
    align-items: end;
}

.form-field[b-lk0hbm0c5e] {
    flex: 1;
}

.form-field label[b-lk0hbm0c5e] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.form-field-btn[b-lk0hbm0c5e] {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

[b-lk0hbm0c5e] .btn-add-widget,
[b-lk0hbm0c5e] .btn-undo-widget {
    white-space: nowrap;
}

[b-lk0hbm0c5e] .btn-full-width {
    width: 100%;
}

/* ── Designer Footer ── */
[b-lk0hbm0c5e] .designer-window .k-window-footer {
    background: #111827 !important;
    border-top: 1px solid var(--border-subtle) !important;
    padding: 12px 20px !important;
}

.designer-footer[b-lk0hbm0c5e] {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* ── Telerik Input Overrides for Dark Theme ── */
[b-lk0hbm0c5e] .designer-window .k-input,
[b-lk0hbm0c5e] .designer-window .k-picker,
[b-lk0hbm0c5e] .designer-window .k-dropdownlist,
[b-lk0hbm0c5e] .designer-window .k-multiselect {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--border-light) !important;
    color: var(--text-primary) !important;
}

[b-lk0hbm0c5e] .designer-window .k-input:focus,
[b-lk0hbm0c5e] .designer-window .k-picker:focus-within {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

/* ── Scrollbar Styling ── */
.widget-list[b-lk0hbm0c5e]::-webkit-scrollbar,
.designer-content[b-lk0hbm0c5e]::-webkit-scrollbar {
    width: 5px;
}

.widget-list[b-lk0hbm0c5e]::-webkit-scrollbar-track,
.designer-content[b-lk0hbm0c5e]::-webkit-scrollbar-track {
    background: transparent;
}

.widget-list[b-lk0hbm0c5e]::-webkit-scrollbar-thumb,
.designer-content[b-lk0hbm0c5e]::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

.widget-list[b-lk0hbm0c5e]::-webkit-scrollbar-thumb:hover,
.designer-content[b-lk0hbm0c5e]::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ── Responsive: Large Screens ── */
@media (min-width: 1920px) {
    .info-card__value[b-lk0hbm0c5e] {
        font-size: 42px;
    }
    .info-card__title[b-lk0hbm0c5e] {
        font-size: 12px;
    }
    .stat-value[b-lk0hbm0c5e] {
        font-size: 15px;
    }
    .dashboard-header[b-lk0hbm0c5e] {
        padding: 0 32px;
    }
}

@media (min-width: 2560px) {
    .aodb-dashboard[b-lk0hbm0c5e] {
        --gap: 14px;
    }
    .info-card[b-lk0hbm0c5e] {
        padding: 18px 20px 14px;
    }
    .info-card__value[b-lk0hbm0c5e] {
        font-size: 52px;
    }
}
/* /Pages/FlightDashboard.razor.rz.scp.css */
/* Styles moved to wwwroot/css/flight-dashboard.css */
/* /Pages/Index.razor.rz.scp.css */
/* Dashboard Loading */
/*.dashboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 1rem;
}

.loading-text {
    color: #64748b;
    font-size: 0.9rem;
}*/

/* Dashboard Container */
/*.dashboard {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 0;
}*/

/* Welcome Section */
/*.welcome-section {
    background: linear-gradient(135deg, #1E429A 0%, #0d2b6b 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 66, 154, 0.2);
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 196, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.welcome-content {
    z-index: 1;
}

.welcome-title {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
}

.welcome-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.welcome-decoration {
    z-index: 1;
}

.welcome-logo {
    height: 50px;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}*/

/* Section Headers */
/*.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e2e8f0, transparent);
}*/

/* Dashboard Cards (Quick Actions) */
/*.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.salary-icon {
    background: linear-gradient(135deg, #1E429A, #2563eb);
    color: #ffffff;
}

.monitor-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
}

.aodb-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: #ffffff;
}

.card-info {
    flex: 1;
}

.card-title {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
}

.card-description {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.card-arrow {
    color: #cbd5e1;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.dashboard-card:hover .card-arrow {
    color: #1E429A;
    transform: translateX(3px);
}*/

/* Services Grid */
/*.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-tile {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
    text-decoration: none;
}

.tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.tile-label {
    color: #334155;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.service-tile:hover .tile-label {
    color: #1E429A;
}*/

/* Responsive */
/*@media (max-width: 640px) {
    .welcome-section {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .welcome-title {
        font-size: 1.3rem;
    }

    .welcome-logo {
        height: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .dashboard {
        padding: 1rem 0;
    }
}*/
/* /Pages/OTP.razor.rz.scp.css */
body[b-y3wfdwhuft], html[b-y3wfdwhuft] {
    height: 100%;
    margin: 0;
    font-family: sans-serif;
    font-weight: 200;
}

body[b-y3wfdwhuft] {
    background-color: #0f0f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

input[b-y3wfdwhuft] {
    width: 30px;
    height: 50px;
    background-color: #0f0f2a;
    border: none;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-family: sans-serif;
    font-weight: 200;
    color: white;
    margin: 0 2px;
}

.splitter[b-y3wfdwhuft] {
    padding: 0 5px;
    color: white;
    font-size: 24px;
}

/* /Shared/DashboardLayout.razor.rz.scp.css */
.dashboard-layout[b-bsic2b5ou1] {
    width: 100%;
    min-height: 100vh;
    background: #0B1929;
    overflow-x: hidden;
}
/* /Shared/FullScreenLayout.razor.rz.scp.css */
.fullscreen-page[b-xygebv57bq] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-topbar[b-xygebv57bq] {
    display: flex;
    align-items: center;
    height: 3rem;
    padding: 0 1rem;
    background: #1E429A;
    color: #ffffff;
    flex-shrink: 0;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.back-link[b-xygebv57bq] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-link:hover[b-xygebv57bq] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.topbar-title[b-xygebv57bq] {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.fullscreen-content[b-xygebv57bq] {
    flex: 1;
    overflow: hidden;
}
/* /Shared/LoginDisplay.razor.rz.scp.css */
.user-display[b-t3j439jx39] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-user-profile[b-t3j439jx39] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.4rem 0.85rem;
    color: #334155;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-user-profile:hover[b-t3j439jx39] {
    background-color: #f1f5f9;
    border-color: #1E429A;
    color: #1E429A;
}

.btn-user-profile i[b-t3j439jx39] {
    font-size: 1.1rem;
    color: #1E429A;
}

.user-name[b-t3j439jx39] {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout[b-t3j439jx39] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.4rem 0.85rem;
    color: #dc2626;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-logout:hover[b-t3j439jx39] {
    background-color: #fef2f2;
    border-color: #dc2626;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-f1ohd20ipj] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-f1ohd20ipj] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar[b-f1ohd20ipj] {
    background: linear-gradient(180deg, #0d2b6b 0%, #1E429A 100%);
}

.top-row[b-f1ohd20ipj] {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.top-row-left[b-f1ohd20ipj] {
    display: flex;
    align-items: center;
}

.top-row-right[b-f1ohd20ipj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title-text[b-f1ohd20ipj] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E429A;
    letter-spacing: -0.01em;
}

.top-row[b-f1ohd20ipj]  a, .top-row .btn-link[b-f1ohd20ipj] {
    white-space: nowrap;
    margin-left: 1.5rem;
}

.top-row a:first-child[b-f1ohd20ipj] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-footer[b-f1ohd20ipj] {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    margin-top: auto;
}

.footer-content[b-f1ohd20ipj] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #64748b;
}

.content[b-f1ohd20ipj] {
    padding-top: 1.5rem;
    flex: 1;
    background-color: #f1f5f9;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-f1ohd20ipj] {
        display: none;
    }

    .top-row.auth[b-f1ohd20ipj] {
        justify-content: space-between;
    }

    .top-row a[b-f1ohd20ipj], .top-row .btn-link[b-f1ohd20ipj] {
        margin-left: 0;
    }

    .page-title-text[b-f1ohd20ipj] {
        font-size: 0.95rem;
    }
}

@media (min-width: 641px) {
    .page[b-f1ohd20ipj] {
        flex-direction: row;
    }

    .sidebar[b-f1ohd20ipj] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-f1ohd20ipj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-f1ohd20ipj], article[b-f1ohd20ipj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* Sidebar Header */
.sidebar-header[b-lo3bjdq3cs] {
    padding: 1.25rem 1.25rem 0.75rem;
    position: relative;
}

.brand-logo[b-lo3bjdq3cs] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.logo-img[b-lo3bjdq3cs] {
    height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.brand-divider[b-lo3bjdq3cs] {
    height: 1px;
    background: linear-gradient(90deg, transparent, #00FFC4, transparent);
    margin: 0.75rem 0;
}

.brand-subtitle[b-lo3bjdq3cs] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    font-weight: 500;
}

.navbar-toggler[b-lo3bjdq3cs] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.navbar-toggler:hover[b-lo3bjdq3cs] {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Sidebar Navigation */
.sidebar-nav[b-lo3bjdq3cs] {
    padding: 0.5rem 0;
    overflow-y: auto;
    flex: 1;
}

.nav-section[b-lo3bjdq3cs] {
    padding: 0.25rem 0;
}

.nav-section-label[b-lo3bjdq3cs] {
    display: block;
    padding: 0.5rem 1.5rem 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #00FFC4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-section-bottom[b-lo3bjdq3cs] {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Nav Items */
.nav-item[b-lo3bjdq3cs] {
    font-size: 0.875rem;
    padding: 0.1rem 0.75rem;
}

.nav-item:first-of-type[b-lo3bjdq3cs] {
    padding-top: 0.1rem;
}

.nav-item:last-of-type[b-lo3bjdq3cs] {
    padding-bottom: 0.1rem;
}

.nav-item[b-lo3bjdq3cs]  a {
    color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    height: 2.75rem;
    display: flex;
    align-items: center;
    line-height: 2.75rem;
    padding: 0 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-item[b-lo3bjdq3cs]  a.active {
    background-color: rgba(0, 255, 196, 0.15);
    color: #00FFC4;
    font-weight: 500;
}

.nav-item[b-lo3bjdq3cs]  a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateX(2px);
}

.nav-icon[b-lo3bjdq3cs] {
    width: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    margin-right: 0.75rem;
    opacity: 0.9;
}

.nav-text[b-lo3bjdq3cs] {
    font-weight: 400;
}

/* Special nav link variants */
.nav-link-warning[b-lo3bjdq3cs] {
    border-left: 2px solid transparent;
}

.nav-item[b-lo3bjdq3cs]  .nav-link-warning:hover,
.nav-item[b-lo3bjdq3cs]  .nav-link-warning:hover a {
    color: #fbbf24 !important;
    border-left-color: #fbbf24;
}

.nav-link-danger[b-lo3bjdq3cs] {
    border-left: 2px solid transparent;
}

.nav-item[b-lo3bjdq3cs]  .nav-link-danger:hover {
    color: #f87171 !important;
    border-left-color: #f87171;
}

@media (min-width: 641px) {
    .navbar-toggler[b-lo3bjdq3cs] {
        display: none;
    }

    .collapse[b-lo3bjdq3cs] {
        display: block;
    }
}
