/* /Components/ConnectionErrorBanner.razor.rz.scp.css */
/* ConnectionErrorBanner Component Styles */
/* Note: Most styles are inherited from the global error-banner styles */
/* This file can be used for component-specific overrides if needed */
/* /Components/LoadingScreen.razor.rz.scp.css */
.loading-screen[b-nbqeaubf67] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-container[b-nbqeaubf67] {
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #2a2a2a;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(212, 175, 55, 0.05);
    width: 90%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
}

.loading-header[b-nbqeaubf67] {
    text-align: center;
    margin-bottom: 2rem;
}

.loading-icon[b-nbqeaubf67] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #d4af37 0%, #b8942e 100%);
    border-radius: 18px;
    color: #0a0a0a;
    margin-bottom: 1.25rem;
    animation: pulse-glow-b-nbqeaubf67 2s infinite;
}

@keyframes pulse-glow-b-nbqeaubf67 {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.loading-title[b-nbqeaubf67] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.025em;
}

.loading-subtitle[b-nbqeaubf67] {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

.progress-section[b-nbqeaubf67] {
    margin-bottom: 2rem;
}

.progress-bar-container[b-nbqeaubf67] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 14px;
    overflow: hidden;
    margin-bottom: 0.875rem;
    border: 1px solid #2a2a2a;
}

.progress-bar[b-nbqeaubf67] {
    height: 100%;
    background: linear-gradient(90deg, #b8942e 0%, #d4af37 50%, #f0d875 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.progress-text[b-nbqeaubf67] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.progress-percentage[b-nbqeaubf67] {
    font-weight: 700;
    font-family: 'Consolas', 'Monaco', monospace;
    color: #d4af37;
    font-size: 1rem;
}

.progress-step[b-nbqeaubf67] {
    color: #a0a0a0;
}

.progress-detail[b-nbqeaubf67] {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 0.5rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

.steps-section[b-nbqeaubf67] {
    border-top: 1px solid #2a2a2a;
    padding-top: 1.5rem;
}

.steps-list[b-nbqeaubf67] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-item[b-nbqeaubf67] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 10px;
    transition: background 0.2s;
}

.step-item.in-progress[b-nbqeaubf67] {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.step-indicator[b-nbqeaubf67] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.step-item.completed .step-indicator[b-nbqeaubf67] {
    color: #22c55e;
}

.step-item.in-progress .step-indicator[b-nbqeaubf67] {
    color: #d4af37;
}

.step-item.pending .step-indicator[b-nbqeaubf67] {
    color: var(--text-muted, #666666);
}

.pending-dot[b-nbqeaubf67] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted, #666666);
}

.spinner[b-nbqeaubf67] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin-b-nbqeaubf67 1s linear infinite;
}

@keyframes spin-b-nbqeaubf67 {
    to {
        transform: rotate(360deg);
    }
}

.step-content[b-nbqeaubf67] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.step-name[b-nbqeaubf67] {
    font-size: 0.9rem;
    color: var(--text-secondary, #a0a0a0);
}

.step-item.completed .step-name[b-nbqeaubf67] {
    color: #666666;
}

.step-item.in-progress .step-name[b-nbqeaubf67] {
    color: #ffffff;
    font-weight: 500;
}

.step-time[b-nbqeaubf67] {
    font-size: 0.75rem;
    color: #22c55e;
    font-family: 'Consolas', 'Monaco', monospace;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.step-detail[b-nbqeaubf67] {
    font-size: 0.75rem;
    color: #666666;
    font-family: 'Consolas', 'Monaco', monospace;
    width: 100%;
}

.step-detail.completed[b-nbqeaubf67] {
    color: var(--text-muted, #666666);
}

/* Responsive - Extra Small Mobile */
@media (max-width: 359px) {
    .loading-container[b-nbqeaubf67] {
        padding: 1.25rem;
        border-radius: 12px;
        width: 95%;
    }

    .loading-icon[b-nbqeaubf67] {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .loading-icon svg[b-nbqeaubf67] {
        width: 24px;
        height: 24px;
    }

    .loading-title[b-nbqeaubf67] {
        font-size: 1.25rem;
    }

    .loading-subtitle[b-nbqeaubf67] {
        font-size: 0.85rem;
    }

    .progress-bar-container[b-nbqeaubf67] {
        height: 10px;
    }

    .step-item[b-nbqeaubf67] {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .step-name[b-nbqeaubf67] {
        font-size: 0.8rem;
    }

    .step-time[b-nbqeaubf67], .step-detail[b-nbqeaubf67] {
        font-size: 0.7rem;
    }
}

/* Responsive - Small Mobile */
@media (min-width: 360px) and (max-width: 479px) {
    .loading-container[b-nbqeaubf67] {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .loading-icon[b-nbqeaubf67] {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .loading-icon svg[b-nbqeaubf67] {
        width: 28px;
        height: 28px;
    }

    .loading-title[b-nbqeaubf67] {
        font-size: 1.5rem;
    }

    .loading-subtitle[b-nbqeaubf67] {
        font-size: 0.9rem;
    }

    .progress-bar-container[b-nbqeaubf67] {
        height: 12px;
    }

    .step-name[b-nbqeaubf67] {
        font-size: 0.85rem;
    }
}

/* Responsive - Medium Mobile */
@media (min-width: 480px) and (max-width: 640px) {
    .loading-container[b-nbqeaubf67] {
        padding: 2rem;
    }
}

/* Responsive - Tablet and up */
@media (min-width: 641px) {
    .loading-container[b-nbqeaubf67] {
        padding: 2.5rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .loading-container[b-nbqeaubf67] {
        max-height: 90vh;
        padding: 1.25rem 1.5rem;
    }

    .loading-header[b-nbqeaubf67] {
        margin-bottom: 1rem;
    }

    .loading-icon[b-nbqeaubf67] {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .loading-title[b-nbqeaubf67] {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .progress-section[b-nbqeaubf67] {
        margin-bottom: 1rem;
    }

    .steps-section[b-nbqeaubf67] {
        padding-top: 1rem;
    }

    .steps-list[b-nbqeaubf67] {
        gap: 0.25rem;
    }

    .step-item[b-nbqeaubf67] {
        padding: 0.375rem 0.5rem;
    }
}
/* /Components/LoadingSkeleton.razor.rz.scp.css */
/* Loading Skeleton Styles - Gold/Dark Theme */

/* Base skeleton animation with gold tint */
@keyframes skeleton-shimmer-b-oukvta33zj {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-line[b-oukvta33zj] {
    background: linear-gradient(
        90deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(212, 175, 55, 0.15) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    background: linear-gradient(
        90deg,
        var(--bg-card, rgba(26, 26, 26, 0.8)) 0%,
        var(--accent-gold-pale, rgba(212, 175, 55, 0.15)) 50%,
        var(--bg-card, rgba(26, 26, 26, 0.8)) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-oukvta33zj 1.5s infinite ease-in-out;
    border-radius: 4px;
}

/* Card variant */
.skeleton-card[b-oukvta33zj] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skeleton-item[b-oukvta33zj] {
    background: var(--bg-secondary, rgba(17, 17, 17, 0.5));
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    border-radius: 8px;
    padding: 1rem;
}

.skeleton-title[b-oukvta33zj] {
    height: 12px;
    width: 60%;
    margin-bottom: 0.75rem;
}

.skeleton-value[b-oukvta33zj] {
    height: 24px;
    width: 80%;
}

/* List variant */
.skeleton-list[b-oukvta33zj] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-list-item[b-oukvta33zj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-primary, rgba(10, 10, 10, 0.3));
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    border-radius: 8px;
}

.skeleton-avatar[b-oukvta33zj] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(
        90deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(212, 175, 55, 0.15) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    background: linear-gradient(
        90deg,
        var(--bg-card, rgba(26, 26, 26, 0.8)) 0%,
        var(--accent-gold-pale, rgba(212, 175, 55, 0.15)) 50%,
        var(--bg-card, rgba(26, 26, 26, 0.8)) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-oukvta33zj 1.5s infinite ease-in-out;
    flex-shrink: 0;
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.skeleton-content[b-oukvta33zj] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-name[b-oukvta33zj] {
    height: 16px;
    width: 40%;
}

.skeleton-detail[b-oukvta33zj] {
    height: 12px;
    width: 70%;
}

/* Table variant */
.skeleton-table[b-oukvta33zj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-table-header[b-oukvta33zj] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary, rgba(17, 17, 17, 0.5));
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    border-radius: 6px 6px 0 0;
}

.skeleton-table-row[b-oukvta33zj] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-primary, rgba(10, 10, 10, 0.3));
    border-bottom: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.skeleton-table-row:last-child[b-oukvta33zj] {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.skeleton-th[b-oukvta33zj] {
    height: 14px;
}

.skeleton-td[b-oukvta33zj] {
    height: 18px;
}

/* Metrics variant */
.skeleton-metrics[b-oukvta33zj] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skeleton-metric[b-oukvta33zj] {
    background: var(--bg-secondary, rgba(17, 17, 17, 0.5));
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    border-radius: 8px;
    padding: 1rem;
}

.skeleton-metric-label[b-oukvta33zj] {
    height: 10px;
    width: 50%;
    margin-bottom: 0.75rem;
}

.skeleton-metric-value[b-oukvta33zj] {
    height: 28px;
    width: 70%;
}

/* Logs variant */
.skeleton-logs[b-oukvta33zj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-log-entry[b-oukvta33zj] {
    padding: 0.5rem 0.75rem;
    background: var(--bg-primary, rgba(10, 10, 10, 0.3));
    border-radius: 4px;
    border-left: 3px solid var(--accent-gold-dark, rgba(184, 134, 11, 0.5));
}

.skeleton-log-header[b-oukvta33zj] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.skeleton-timestamp[b-oukvta33zj] {
    height: 14px;
    width: 80px;
}

.skeleton-level[b-oukvta33zj] {
    height: 14px;
    width: 40px;
}

.skeleton-message[b-oukvta33zj] {
    height: 14px;
    width: 90%;
}

/* Responsive adjustments */

/* Extra small mobile (< 480px) */
@media (max-width: 479px) {
    .skeleton-card[b-oukvta33zj],
    .skeleton-metrics[b-oukvta33zj] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .skeleton-item[b-oukvta33zj],
    .skeleton-metric[b-oukvta33zj] {
        padding: 0.75rem;
    }

    .skeleton-value[b-oukvta33zj] {
        height: 18px;
    }

    .skeleton-metric-value[b-oukvta33zj] {
        height: 22px;
    }

    .skeleton-avatar[b-oukvta33zj] {
        width: 40px;
        height: 40px;
    }

    .skeleton-table-header[b-oukvta33zj],
    .skeleton-table-row[b-oukvta33zj] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small mobile (480px - 640px) */
@media (min-width: 480px) and (max-width: 640px) {
    .skeleton-card[b-oukvta33zj],
    .skeleton-metrics[b-oukvta33zj] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Tablet and desktop (769px+) */
@media (min-width: 769px) {
    .skeleton-card[b-oukvta33zj],
    .skeleton-metrics[b-oukvta33zj] {
        grid-template-columns: repeat(4, 1fr);
    }

    .skeleton-table-header[b-oukvta33zj],
    .skeleton-table-row[b-oukvta33zj] {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
    .skeleton-metrics[b-oukvta33zj] {
        gap: 1.25rem;
    }

    .skeleton-metric[b-oukvta33zj] {
        padding: 1.25rem;
    }

    .skeleton-metric-value[b-oukvta33zj] {
        height: 32px;
    }
}
/* /Components/RestartBanner.razor.rz.scp.css */
.restart-banner[b-e28jtfcrcl] {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    animation: banner-slide-in-b-e28jtfcrcl 0.3s ease-out;
}

@keyframes banner-slide-in-b-e28jtfcrcl {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-content[b-e28jtfcrcl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-icon[b-e28jtfcrcl] {
    flex-shrink: 0;
}

.banner-text[b-e28jtfcrcl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.restart-time[b-e28jtfcrcl] {
    opacity: 0.8;
    font-size: 0.8rem;
}

/* Info state (> 15 minutes) */
.banner-info[b-e28jtfcrcl] {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.25) 50%, rgba(59, 130, 246, 0.15) 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.banner-info .banner-icon[b-e28jtfcrcl] {
    color: #3b82f6;
}

/* Warning state (5-15 minutes) */
.banner-warning[b-e28jtfcrcl] {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.25) 50%, rgba(245, 158, 11, 0.15) 100%);
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    color: #fcd34d;
}

.banner-warning .banner-icon[b-e28jtfcrcl] {
    color: #f59e0b;
}

/* Critical state (< 5 minutes) */
.banner-critical[b-e28jtfcrcl] {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.25) 50%, rgba(239, 68, 68, 0.15) 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    animation: banner-slide-in-b-e28jtfcrcl 0.3s ease-out, pulse-critical-b-e28jtfcrcl 2s infinite;
}

.banner-critical .banner-icon[b-e28jtfcrcl] {
    color: #ef4444;
}

/* Imminent state (restart happening) */
.banner-imminent[b-e28jtfcrcl] {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.4) 50%, rgba(239, 68, 68, 0.25) 100%);
    border-bottom: 2px solid rgba(239, 68, 68, 0.5);
    color: #ffffff;
    animation: banner-slide-in-b-e28jtfcrcl 0.3s ease-out, pulse-imminent-b-e28jtfcrcl 1s infinite;
}

.banner-imminent .banner-icon[b-e28jtfcrcl] {
    color: #ef4444;
}

@keyframes pulse-critical-b-e28jtfcrcl {
    0%, 100% {
        background: linear-gradient(90deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.25) 50%, rgba(239, 68, 68, 0.15) 100%);
    }
    50% {
        background: linear-gradient(90deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.35) 50%, rgba(239, 68, 68, 0.2) 100%);
    }
}

@keyframes pulse-imminent-b-e28jtfcrcl {
    0%, 100% {
        background: linear-gradient(90deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.4) 50%, rgba(239, 68, 68, 0.25) 100%);
    }
    50% {
        background: linear-gradient(90deg, rgba(239, 68, 68, 0.35) 0%, rgba(239, 68, 68, 0.55) 50%, rgba(239, 68, 68, 0.35) 100%);
    }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .restart-banner[b-e28jtfcrcl] {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }

    .banner-content[b-e28jtfcrcl] {
        gap: 0.375rem;
    }

    .banner-icon[b-e28jtfcrcl] {
        width: 16px;
        height: 16px;
    }

    .restart-time[b-e28jtfcrcl] {
        display: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-n1rem0f0kt] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-primary, #0a0a0a);
}

.page-login[b-n1rem0f0kt] {
    background: linear-gradient(135deg, var(--bg-primary, #0a0a0a) 0%, var(--bg-secondary, #111111) 50%, var(--bg-primary, #0a0a0a) 100%);
}

.page-loading[b-n1rem0f0kt] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg-primary, #0a0a0a);
}

.loading-spinner-container[b-n1rem0f0kt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-spinner[b-n1rem0f0kt] {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-primary, rgba(212, 175, 55, 0.2));
    border-top-color: var(--accent-gold, #d4af37);
    border-radius: 50%;
    animation: spin-b-n1rem0f0kt 0.8s linear infinite;
}

@keyframes spin-b-n1rem0f0kt {
    to {
        transform: rotate(360deg);
    }
}

main[b-n1rem0f0kt] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.login-container[b-n1rem0f0kt] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container .content[b-n1rem0f0kt] {
    width: 100%;
    max-width: 460px;
    padding: 2rem;
}

/* Large desktop login container (1200px+) */
@media (min-width: 1200px) {
    .login-container .content[b-n1rem0f0kt] {
        max-width: 500px;
        padding: 2.5rem;
    }
}

/* Extra large desktop login container (1600px+) */
@media (min-width: 1600px) {
    .login-container .content[b-n1rem0f0kt] {
        max-width: 560px;
        padding: 3rem;
    }
}

.sidebar[b-n1rem0f0kt] {
    background: linear-gradient(180deg, var(--bg-secondary, #111111) 0%, var(--bg-primary, #0a0a0a) 70%);
    border-right: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.top-row[b-n1rem0f0kt] {
    background-color: var(--bg-secondary, #111111);
    border-bottom: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-n1rem0f0kt]  a,
.top-row[b-n1rem0f0kt]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text-secondary, #a0a0a0);
}

.top-row[b-n1rem0f0kt]  a:hover,
.top-row[b-n1rem0f0kt]  .btn-link:hover {
    text-decoration: none;
    color: var(--accent-gold, #d4af37);
}

/* Connection Status */
.connection-status[b-n1rem0f0kt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-primary, #0a0a0a);
    border-radius: 6px;
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.status-indicator[b-n1rem0f0kt] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-connected[b-n1rem0f0kt] {
    background-color: var(--success, #22c55e);
    box-shadow: 0 0 6px var(--success, #22c55e);
}

.status-connecting[b-n1rem0f0kt],
.status-reconnecting[b-n1rem0f0kt] {
    background-color: var(--accent-gold, #d4af37);
    box-shadow: 0 0 6px var(--accent-gold, #d4af37);
    animation: pulse-b-n1rem0f0kt 1.5s infinite;
}

.status-disconnected[b-n1rem0f0kt] {
    background-color: var(--danger, #ef4444);
    box-shadow: 0 0 6px var(--danger, #ef4444);
}

.status-text[b-n1rem0f0kt] {
    font-size: 0.8rem;
    color: var(--text-muted, #666666);
    font-weight: 500;
}

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

/* User Info */
.user-info[b-n1rem0f0kt] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.5rem 0.25rem 0.75rem;
    background: var(--bg-primary, #0a0a0a);
    border-radius: 6px;
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.user-name[b-n1rem0f0kt] {
    font-weight: 500;
    color: var(--text-primary, #ffffff);
    font-size: 0.875rem;
}

.user-role[b-n1rem0f0kt] {
    font-size: 0.75rem;
    color: var(--accent-gold, #d4af37);
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.btn-logout[b-n1rem0f0kt] {
    color: var(--text-secondary, #a0a0a0) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.btn-logout:hover[b-n1rem0f0kt] {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger, #ef4444) !important;
    text-decoration: none !important;
}

/* Content Area */
.content[b-n1rem0f0kt] {
    background-color: var(--bg-primary, #0a0a0a);
    color: var(--text-primary, #ffffff);
}

/* Extra small mobile (< 480px) */
@media (max-width: 479px) {
    .top-row[b-n1rem0f0kt] {
        justify-content: space-between;
        flex-wrap: wrap;
        height: auto;
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .top-row[b-n1rem0f0kt]  a,
    .top-row[b-n1rem0f0kt]  .btn-link {
        margin-left: 0;
        font-size: 0.8rem;
    }

    .connection-status[b-n1rem0f0kt] {
        order: 1;
        flex: 0 0 auto;
        padding: 0.2rem 0.5rem;
    }

    .user-info[b-n1rem0f0kt] {
        order: 2;
        padding: 0.2rem 0.375rem 0.2rem 0.5rem;
        gap: 0.5rem;
    }

    .status-text[b-n1rem0f0kt] {
        display: none;
    }

    .user-name[b-n1rem0f0kt] {
        font-size: 0.8rem;
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .user-role[b-n1rem0f0kt] {
        display: none;
    }

    .btn-logout[b-n1rem0f0kt] {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Small mobile (480px - 640px) */
@media (min-width: 480px) and (max-width: 640px) {
    .top-row[b-n1rem0f0kt] {
        justify-content: space-between;
        flex-wrap: wrap;
        height: auto;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

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

    .connection-status[b-n1rem0f0kt] {
        order: 1;
    }

    .user-info[b-n1rem0f0kt] {
        order: 2;
    }

    .user-name[b-n1rem0f0kt] {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .user-role[b-n1rem0f0kt] {
        display: none;
    }
}

/* Tablet and up (641px+) */
@media (min-width: 641px) {
    .page[b-n1rem0f0kt] {
        flex-direction: row;
    }

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

    .top-row[b-n1rem0f0kt] {
        position: sticky;
        top: 0;
        z-index: 1;
        backdrop-filter: blur(8px);
        background-color: rgba(17, 17, 17, 0.95);
    }

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

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

    main[b-n1rem0f0kt] {
        flex: 1;
        overflow-y: auto;
        height: 100vh;
        min-width: 0; /* Prevent flex overflow */
    }

    /* Show user role on tablet+ */
    .user-role[b-n1rem0f0kt] {
        display: inline-block;
    }
}

/* Tablet portrait (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .sidebar[b-n1rem0f0kt] {
        width: 220px;
    }

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

    .user-role[b-n1rem0f0kt] {
        display: none;
    }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
    .sidebar[b-n1rem0f0kt] {
        width: 280px;
    }

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

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
    .top-row[b-n1rem0f0kt] {
        min-height: 2.75rem;
        height: auto;
    }

    .sidebar[b-n1rem0f0kt] {
        width: 200px;
    }

    .user-role[b-n1rem0f0kt] {
        display: none;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-5eqi8afe1g] {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.navbar-toggler:hover[b-5eqi8afe1g] {
    background-color: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.top-row[b-5eqi8afe1g] {
    min-height: 3.5rem;
    background: linear-gradient(135deg, var(--bg-primary, #0a0a0a) 0%, var(--bg-secondary, #111111) 100%);
    border-bottom: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.navbar-brand[b-5eqi8afe1g] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.15s ease;
}

.navbar-brand:hover[b-5eqi8afe1g] {
    color: var(--accent-gold, #d4af37);
}

.brand-icon[b-5eqi8afe1g] {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M8 16c3.314 0 6-2 6-5.5 0-1.5-.5-4-2.5-6 .25 1.5-1.25 2-1.25 2C11 4 9 .5 6 0c.357 2 .5 4-2 6-1.25 1-2 2.729-2 4.5C2 14 4.686 16 8 16Zm0-1c-1.657 0-3-1-3-2.75 0-.75.25-2 1.25-3C6.125 10 7 10.5 7 10.5c-.375-1.25.5-3.25 2-3.5-.179 1-.25 2 1 3 .625.5 1 1.364 1 2.25C11 14 9.657 15 8 15Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
}

.bi[b-5eqi8afe1g] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    transition: filter 0.15s ease;
}

/* Dashboard icon - speedometer (gold - primary) */
.bi-speedometer-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M8 2a.5.5 0 0 1 .5.5V4a.5.5 0 0 1-1 0V2.5A.5.5 0 0 1 8 2zM3.732 3.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707zM2 8a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8zm9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5zm.754-4.246a.389.389 0 0 0-.527-.02L7.547 7.31A.91.91 0 1 0 8.85 8.569l3.434-4.297a.389.389 0 0 0-.029-.518z'/%3E%3Cpath fill-rule='evenodd' d='M6.664 15.889A8 8 0 1 1 9.336.11a8 8 0 0 1-2.672 15.78zm-4.665-4.283A11.945 11.945 0 0 1 8 10c2.186 0 4.236.585 6.001 1.606a7 7 0 1 0-12.002 0z'/%3E%3C/svg%3E");
}

/* Players icon - people (gold light - secondary) */
.bi-people-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f4d03f' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8Zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002a.274.274 0 0 1-.014.002H7.022ZM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816ZM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
}

/* Fights icon - swords crossed (danger red - semantic) */
.bi-swords-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ef4444' viewBox='0 0 16 16'%3E%3Cpath d='M12.854.146a.5.5 0 0 0-.707 0L10.5 1.793 14.207 5.5l1.647-1.646a.5.5 0 0 0 0-.708l-3-3zm.646 6.061L9.793 2.5 3.293 9H3.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.207l6.5-6.5zm-7.468 7.468A.5.5 0 0 1 6 13.5V13h-.5a.5.5 0 0 1-.5-.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.5-.5V10h-.5a.499.499 0 0 1-.175-.032l-.179.178a.5.5 0 0 0-.11.168l-2 5a.5.5 0 0 0 .65.65l5-2a.5.5 0 0 0 .168-.11l.178-.178z'/%3E%3C/svg%3E");
}

/* Leaderboard icon - trophy (gold - primary) */
.bi-trophy-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935zM3.504 1c.007.517.026 1.006.056 1.469.13 2.028.457 3.546.87 4.667C5.294 9.48 6.484 10 7 10a.5.5 0 0 1 .5.5v2.61a1 1 0 0 1-.757.97l-1.426.356a.5.5 0 0 0-.179.085L4.5 15h7l-.638-.479a.501.501 0 0 0-.18-.085l-1.425-.356a1 1 0 0 1-.757-.97V10.5A.5.5 0 0 1 9 10c.516 0 1.706-.52 2.57-2.864.413-1.12.74-2.64.87-4.667.03-.463.049-.952.056-1.469H3.504z'/%3E%3C/svg%3E");
}

/* Logs icon - journal (success green - semantic) */
.bi-journal-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2322c55e' viewBox='0 0 16 16'%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2z'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1z'/%3E%3C/svg%3E");
}

/* Chat icon - chat bubble (info blue - semantic) */
.bi-chat-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233b82f6' viewBox='0 0 16 16'%3E%3Cpath d='M2.678 11.894a1 1 0 0 1 .287.801 10.97 10.97 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8.06 8.06 0 0 0 8 14c3.996 0 7-2.807 7-6 0-3.192-3.004-6-7-6S1 4.808 1 8c0 1.468.617 2.83 1.678 3.894zm-.493 3.905a21.682 21.682 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a9.68 9.68 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9.06 9.06 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105z'/%3E%3C/svg%3E");
}

/* Items Activity icon - box/package (orange - activity) */
.bi-box-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f97316' viewBox='0 0 16 16'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2l-2.218-.887zm3.564 1.426L5.596 5 8 5.961 14.154 3.5l-2.404-.961zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .314-.464L7.443.184z'/%3E%3C/svg%3E");
}

/* Item History icon - clock history (cyan - search/history) */
.bi-history-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2306b6d4' viewBox='0 0 16 16'%3E%3Cpath d='M8.515 1.019A7 7 0 0 0 8 1V0a8 8 0 0 1 .589.022l-.074.997zm2.004.45a7.003 7.003 0 0 0-.985-.299l.219-.976c.383.086.76.2 1.126.342l-.36.933zm1.37.71a7.01 7.01 0 0 0-.439-.27l.493-.87a8.025 8.025 0 0 1 .979.654l-.615.789a6.996 6.996 0 0 0-.418-.302zm1.834 1.79a6.99 6.99 0 0 0-.653-.796l.724-.69c.27.285.52.59.747.91l-.818.576zm.744 1.352a7.08 7.08 0 0 0-.214-.468l.893-.45a7.976 7.976 0 0 1 .45 1.088l-.95.313a7.023 7.023 0 0 0-.179-.483zm.53 2.507a6.991 6.991 0 0 0-.1-1.025l.985-.17c.067.386.106.778.116 1.17l-1 .025zm-.131 1.538c.033-.17.06-.339.081-.51l.993.123a7.957 7.957 0 0 1-.23 1.155l-.964-.267c.046-.165.086-.332.12-.501zm-.952 2.379c.184-.29.346-.594.486-.908l.914.405c-.16.36-.345.706-.555 1.038l-.845-.535zm-.964 1.205c.122-.122.239-.248.35-.378l.758.653a8.073 8.073 0 0 1-.401.432l-.707-.707z'/%3E%3Cpath d='M8 1a7 7 0 1 0 4.95 11.95l.707.707A8.001 8.001 0 1 1 8 0v1z'/%3E%3Cpath d='M7.5 3a.5.5 0 0 1 .5.5v5.21l3.248 1.856a.5.5 0 0 1-.496.868l-3.5-2A.5.5 0 0 1 7 9V3.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

/* Trades History icon - arrows exchange (purple - trading) */
.bi-trades-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a855f7' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 11.5a.5.5 0 0 0 .5.5h11.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 11H1.5a.5.5 0 0 0-.5.5zm14-7a.5.5 0 0 1-.5.5H2.707l3.147 3.146a.5.5 0 1 1-.708.708l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H14.5a.5.5 0 0 1 .5.5z'/%3E%3C/svg%3E");
}

/* Connections icon - person with arrows (teal - connectivity) */
.bi-connections-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2314b8a6' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H1s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C9.516 10.68 8.289 10 6 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3Cpath fill-rule='evenodd' d='M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

/* Performance icon - graph/activity (rose - performance) */
.bi-performance-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f43f5e' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 0h1v15h15v1H0V0Zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07Z'/%3E%3C/svg%3E");
}

/* Documentation icon - book (emerald - knowledge) */
.bi-book-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2310b981' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.828c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811V2.828zm7.5-.141c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z'/%3E%3C/svg%3E");
}

/* Settings icon - gear (gold dark - tertiary) */
.bi-gear-nav-menu[b-5eqi8afe1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b8860b' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E");
}

.nav-section[b-5eqi8afe1g] {
    padding: 1rem 1rem 0.5rem 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.nav-section-title[b-5eqi8afe1g] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold-dark, #b8860b);
}

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

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

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

    .nav-item[b-5eqi8afe1g]  a {
        color: var(--text-secondary, #a0a0a0);
        border-radius: 6px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
        border: 1px solid transparent;
    }

.nav-item[b-5eqi8afe1g]  a.active {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold, #d4af37);
    border-color: rgba(212, 175, 55, 0.2);
}

.nav-item[b-5eqi8afe1g]  a.active .bi {
    filter: brightness(1.2) drop-shadow(0 0 3px rgba(212, 175, 55, 0.4));
}

.nav-item[b-5eqi8afe1g]  a:hover {
    background-color: var(--bg-elevated, rgba(255, 255, 255, 0.05));
    color: var(--text-primary, #ffffff);
    border-color: rgba(212, 175, 55, 0.1);
}

.nav-item[b-5eqi8afe1g]  a:hover .bi {
    filter: brightness(1.1);
}

.nav-scrollable[b-5eqi8afe1g] {
    background: linear-gradient(180deg, var(--bg-secondary, #111111) 0%, var(--bg-primary, #0a0a0a) 100%);
}

/* Scrollbar styling for nav */
.nav-scrollable[b-5eqi8afe1g]::-webkit-scrollbar {
    width: 6px;
}

.nav-scrollable[b-5eqi8afe1g]::-webkit-scrollbar-track {
    background: var(--bg-primary, #0a0a0a);
}

.nav-scrollable[b-5eqi8afe1g]::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
}

.nav-scrollable[b-5eqi8afe1g]::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.3);
}

/* Mobile styles (< 641px) */
@media (max-width: 640px) {
    .navbar-toggler[b-5eqi8afe1g] {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }

    .navbar-brand[b-5eqi8afe1g] {
        font-size: 1rem;
    }

    .brand-icon[b-5eqi8afe1g] {
        width: 1.25rem;
        height: 1.25rem;
    }

    .nav-scrollable[b-5eqi8afe1g] {
        max-height: calc(100vh - 7rem);
        overflow-y: auto;
    }

    .nav-item[b-5eqi8afe1g] {
        font-size: 0.95rem;
    }

    .nav-item[b-5eqi8afe1g]  a {
        height: 3.25rem;
        line-height: 3.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .bi[b-5eqi8afe1g] {
        width: 1.125rem;
        height: 1.125rem;
        margin-right: 0.625rem;
    }

    .nav-section[b-5eqi8afe1g] {
        padding: 0.75rem 0.75rem 0.375rem 0.75rem;
    }

    .nav-section-title[b-5eqi8afe1g] {
        font-size: 0.7rem;
    }
}

/* Extra small mobile (< 480px) */
@media (max-width: 479px) {
    .top-row[b-5eqi8afe1g] {
        min-height: 3rem;
        padding: 0 0.75rem;
    }

    .navbar-brand[b-5eqi8afe1g] {
        font-size: 0.95rem;
        gap: 0.375rem;
    }

    .brand-icon[b-5eqi8afe1g] {
        width: 1.125rem;
        height: 1.125rem;
    }
}

/* Tablet and desktop (641px+) */
@media (min-width: 641px) {
    .navbar-toggler[b-5eqi8afe1g] {
        display: none;
    }

    .collapse[b-5eqi8afe1g] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-5eqi8afe1g] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Tablet portrait (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .navbar-brand[b-5eqi8afe1g] {
        font-size: 1rem;
    }

    .nav-item[b-5eqi8afe1g] {
        font-size: 0.85rem;
    }

    .nav-item[b-5eqi8afe1g]  a {
        height: 2.75rem;
        line-height: 2.75rem;
    }

    .bi[b-5eqi8afe1g] {
        width: 1.125rem;
        height: 1.125rem;
        margin-right: 0.5rem;
    }

    .nav-section[b-5eqi8afe1g] {
        padding: 0.75rem 0.75rem 0.375rem 0.75rem;
    }

    .nav-section-title[b-5eqi8afe1g] {
        font-size: 0.7rem;
    }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
    .navbar-brand[b-5eqi8afe1g] {
        font-size: 1.15rem;
    }

    .brand-icon[b-5eqi8afe1g] {
        width: 1.625rem;
        height: 1.625rem;
    }

    .nav-item[b-5eqi8afe1g] {
        font-size: 0.95rem;
    }

    .nav-item[b-5eqi8afe1g]  a {
        height: 3.25rem;
        line-height: 3.25rem;
    }

    .bi[b-5eqi8afe1g] {
        width: 1.375rem;
        height: 1.375rem;
        margin-right: 0.875rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
    .nav-scrollable[b-5eqi8afe1g] {
        max-height: calc(100vh - 2.75rem);
    }

    .nav-item[b-5eqi8afe1g]  a {
        height: 2.5rem;
        line-height: 2.5rem;
    }

    .nav-item:first-of-type[b-5eqi8afe1g] {
        padding-top: 0.5rem;
    }

    .nav-item:last-of-type[b-5eqi8afe1g] {
        padding-bottom: 0.5rem;
    }
}
/* /Pages/Login.razor.rz.scp.css */
/* Bootstrap Icons - Custom SVG Definitions */
.bi[b-xr4n2bu5t9] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.bi-shield-lock[b-xr4n2bu5t9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533.12.057.218.095.293.118a.55.55 0 0 0 .101.025.615.615 0 0 0 .1-.025c.076-.023.174-.061.294-.118.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.775 11.775 0 0 1-2.517 2.453 7.159 7.159 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7.158 7.158 0 0 1-1.048-.625 11.777 11.777 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 62.456 62.456 0 0 1 5.072.56z'/%3E%3Cpath d='M9.5 6.5a1.5 1.5 0 0 1-1 1.415l.385 1.99a.5.5 0 0 1-.491.595h-.788a.5.5 0 0 1-.49-.595l.384-1.99a1.5 1.5 0 1 1 2-1.415z'/%3E%3C/svg%3E");
}

.bi-box-arrow-in-right[b-xr4n2bu5t9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230a0a0a' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 3.5a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 0-1 0v2A1.5 1.5 0 0 0 6.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-8A1.5 1.5 0 0 0 5 3.5v2a.5.5 0 0 0 1 0v-2z'/%3E%3Cpath fill-rule='evenodd' d='M11.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H1.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
}

.bi-person[b-xr4n2bu5t9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.bi-lock[b-xr4n2bu5t9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-exclamation-triangle-fill[b-xr4n2bu5t9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f87171' viewBox='0 0 16 16'%3E%3Cpath d='M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

/* Margin utilities */
.me-2[b-xr4n2bu5t9] {
    margin-right: 0.5rem;
}

/* Login Card */
.login-card[b-xr4n2bu5t9] {
    background: linear-gradient(145deg, var(--bg-secondary, #111111) 0%, var(--bg-card, #1a1a1a) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 80px rgba(212, 175, 55, 0.05);
    width: 100%;
    max-width: 460px;
}

/* Header */
.login-header[b-xr4n2bu5t9] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon[b-xr4n2bu5t9] {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-gold, #d4af37) 0%, var(--accent-gold-dark, #b8860b) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.login-icon .bi[b-xr4n2bu5t9] {
    font-size: 1.75rem;
    color: var(--bg-primary, #0a0a0a);
}

.login-header h1[b-xr4n2bu5t9] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    margin: 0 0 0.5rem;
}

.login-subtitle[b-xr4n2bu5t9] {
    color: var(--text-muted, #666666);
    font-size: 0.9rem;
    margin: 0;
}

/* Form */
.login-form[b-xr4n2bu5t9] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group[b-xr4n2bu5t9] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-xr4n2bu5t9] {
    color: var(--text-secondary, #a0a0a0);
    font-size: 0.85rem;
    font-weight: 500;
}

.input-wrapper[b-xr4n2bu5t9] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.input-icon-box[b-xr4n2bu5t9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-primary, #0a0a0a);
    border: 1px solid var(--border-muted, #2a2a2a);
    border-radius: 8px;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.input-icon-box .bi[b-xr4n2bu5t9] {
    width: 1.25rem;
    height: 1.25rem;
    transition: filter 0.2s;
}

.form-control[b-xr4n2bu5t9] {
    flex: 1;
    padding: 0.875rem 1rem;
    background-color: var(--bg-primary, #0a0a0a);
    border: 1px solid var(--border-muted, #2a2a2a);
    border-radius: 8px;
    color: var(--text-primary, #ffffff);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control[b-xr4n2bu5t9]::placeholder {
    color: var(--text-muted, #666666);
}

.form-control:focus[b-xr4n2bu5t9] {
    outline: none;
    border-color: var(--accent-gold, #d4af37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.input-wrapper:focus-within .input-icon-box[b-xr4n2bu5t9] {
    border-color: var(--accent-gold, #d4af37);
    background: rgba(212, 175, 55, 0.1);
}

.input-wrapper:focus-within .input-icon-box .bi[b-xr4n2bu5t9] {
    filter: brightness(0) saturate(100%) invert(76%) sepia(47%) saturate(497%) hue-rotate(6deg) brightness(92%) contrast(89%);
}

.form-control:disabled[b-xr4n2bu5t9] {
    opacity: 0.6;
    cursor: not-allowed;
}

.validation-message[b-xr4n2bu5t9] {
    color: var(--danger, #ef4444);
    font-size: 0.8rem;
}

/* Alert */
.alert[b-xr4n2bu5t9] {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.alert-danger[b-xr4n2bu5t9] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Button */
.btn-login[b-xr4n2bu5t9] {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.btn-primary[b-xr4n2bu5t9] {
    background: linear-gradient(135deg, var(--accent-gold, #d4af37) 0%, var(--accent-gold-dark, #b8860b) 100%);
    color: var(--bg-primary, #0a0a0a);
}

.btn-primary:hover:not(:disabled)[b-xr4n2bu5t9] {
    background: linear-gradient(135deg, var(--accent-gold-light, #f4d03f) 0%, var(--accent-gold, #d4af37) 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.btn-primary:active:not(:disabled)[b-xr4n2bu5t9] {
    transform: translateY(0);
}

.btn-primary:disabled[b-xr4n2bu5t9] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner */
.spinner[b-xr4n2bu5t9] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(10, 10, 10, 0.3);
    border-top-color: var(--bg-primary, #0a0a0a);
    border-radius: 50%;
    animation: spin-b-xr4n2bu5t9 0.8s linear infinite;
}

@keyframes spin-b-xr4n2bu5t9 {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.login-footer[b-xr4n2bu5t9] {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.login-footer p[b-xr4n2bu5t9] {
    color: var(--text-muted, #666666);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive */

/* Extra small mobile (< 480px) */
@media (max-width: 479px) {
    .login-card[b-xr4n2bu5t9] {
        padding: 1.25rem;
        border-radius: 0;
        max-width: 100%;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }

    .login-header[b-xr4n2bu5t9] {
        margin-bottom: 1.5rem;
    }

    .login-header h1[b-xr4n2bu5t9] {
        font-size: 1.375rem;
    }

    .login-subtitle[b-xr4n2bu5t9] {
        font-size: 0.85rem;
    }

    .login-icon[b-xr4n2bu5t9] {
        width: 52px;
        height: 52px;
        margin-bottom: 0.75rem;
    }

    .login-icon .bi[b-xr4n2bu5t9] {
        font-size: 1.375rem;
    }

    .login-form[b-xr4n2bu5t9] {
        gap: 1rem;
    }

    .form-group label[b-xr4n2bu5t9] {
        font-size: 0.8rem;
    }

    .input-wrapper[b-xr4n2bu5t9] {
        gap: 0.5rem;
    }

    .input-icon-box[b-xr4n2bu5t9] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .form-control[b-xr4n2bu5t9] {
        padding: 0.75rem 0.875rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .btn-login[b-xr4n2bu5t9] {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .login-footer[b-xr4n2bu5t9] {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .login-footer p[b-xr4n2bu5t9] {
        font-size: 0.75rem;
    }
}

/* Small mobile (480px - 640px) */
@media (min-width: 480px) and (max-width: 640px) {
    .login-card[b-xr4n2bu5t9] {
        padding: 1.5rem;
        border-radius: 12px;
        max-width: 400px;
    }

    .login-header h1[b-xr4n2bu5t9] {
        font-size: 1.5rem;
    }

    .login-icon[b-xr4n2bu5t9] {
        width: 56px;
        height: 56px;
    }

    .login-icon .bi[b-xr4n2bu5t9] {
        font-size: 1.5rem;
    }

    .input-wrapper[b-xr4n2bu5t9] {
        gap: 0.625rem;
    }

    .input-icon-box[b-xr4n2bu5t9] {
        width: 42px;
        height: 42px;
    }

    .form-control[b-xr4n2bu5t9] {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
}

/* Tablet and desktop (641px+) */
@media (min-width: 641px) {
    .login-card[b-xr4n2bu5t9] {
        padding: 2.5rem;
        max-width: 460px;
    }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
    .login-card[b-xr4n2bu5t9] {
        padding: 3rem;
        max-width: 500px;
        border-radius: 20px;
    }

    .login-header h1[b-xr4n2bu5t9] {
        font-size: 2rem;
    }

    .login-icon[b-xr4n2bu5t9] {
        width: 80px;
        height: 80px;
    }

    .login-icon .bi[b-xr4n2bu5t9] {
        font-size: 2.25rem;
    }
}

/* Extra large desktop (1600px+) */
@media (min-width: 1600px) {
    .login-card[b-xr4n2bu5t9] {
        padding: 3.5rem;
        max-width: 560px;
        border-radius: 24px;
    }

    .login-header h1[b-xr4n2bu5t9] {
        font-size: 2.25rem;
    }

    .login-header[b-xr4n2bu5t9] {
        margin-bottom: 2.5rem;
    }

    .login-subtitle[b-xr4n2bu5t9] {
        font-size: 1rem;
    }

    .login-icon[b-xr4n2bu5t9] {
        width: 88px;
        height: 88px;
        margin-bottom: 1.25rem;
    }

    .login-icon .bi[b-xr4n2bu5t9] {
        font-size: 2.5rem;
    }

    .form-group label[b-xr4n2bu5t9] {
        font-size: 0.9rem;
    }

    .input-wrapper[b-xr4n2bu5t9] {
        gap: 0.875rem;
    }

    .input-icon-box[b-xr4n2bu5t9] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .form-control[b-xr4n2bu5t9] {
        padding: 1rem 1.125rem;
        font-size: 1rem;
    }

    .btn-login[b-xr4n2bu5t9] {
        padding: 1rem 1.75rem;
        font-size: 1.1rem;
    }

    .login-footer[b-xr4n2bu5t9] {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .login-footer p[b-xr4n2bu5t9] {
        font-size: 0.85rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .login-card[b-xr4n2bu5t9] {
        padding: 1rem 1.5rem;
        margin: 0.5rem auto;
    }

    .login-header[b-xr4n2bu5t9] {
        margin-bottom: 1rem;
    }

    .login-icon[b-xr4n2bu5t9] {
        width: 48px;
        height: 48px;
        margin-bottom: 0.5rem;
    }

    .login-header h1[b-xr4n2bu5t9] {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .login-form[b-xr4n2bu5t9] {
        gap: 0.75rem;
    }

    .form-group[b-xr4n2bu5t9] {
        gap: 0.25rem;
    }

    .input-wrapper[b-xr4n2bu5t9] {
        gap: 0.5rem;
    }

    .input-icon-box[b-xr4n2bu5t9] {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .form-control[b-xr4n2bu5t9] {
        padding: 0.625rem 0.875rem;
    }

    .btn-login[b-xr4n2bu5t9] {
        padding: 0.625rem 1rem;
        margin-top: 0.25rem;
    }

    .login-footer[b-xr4n2bu5t9] {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
}
/* /Pages/Performance.razor.rz.scp.css */
.performance-page[b-ftmb7tlyi2] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Statistics Section */
.stats-section[b-ftmb7tlyi2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card[b-ftmb7tlyi2] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(145deg, var(--bg-secondary, #111111) 0%, var(--bg-primary, #0a0a0a) 100%);
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    border-radius: 8px;
}

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

.stat-icon.stat-uptime[b-ftmb7tlyi2] {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.stat-icon.stat-commands[b-ftmb7tlyi2] {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.stat-icon.stat-rate[b-ftmb7tlyi2] {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.stat-icon.stat-batches[b-ftmb7tlyi2] {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.stat-content[b-ftmb7tlyi2] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-value[b-ftmb7tlyi2] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    line-height: 1.2;
}

.stat-label[b-ftmb7tlyi2] {
    font-size: 0.8rem;
    color: var(--text-secondary, #888888);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections */
.section[b-ftmb7tlyi2] {
    background: var(--bg-secondary, #111111);
    border: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    border-radius: 8px;
    overflow: hidden;
}

.section-header[b-ftmb7tlyi2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.section-header h3[b-ftmb7tlyi2] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
}

.header-actions[b-ftmb7tlyi2] {
    display: flex;
    gap: 0.5rem;
}

.btn-reset[b-ftmb7tlyi2] {
    padding: 0.35rem 1rem;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-reset:hover:not(:disabled)[b-ftmb7tlyi2] {
    background: rgba(239, 68, 68, 0.25);
}

.btn-reset:disabled[b-ftmb7tlyi2] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Batch stats */
.batch-stats-grid[b-ftmb7tlyi2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
}

.batch-stat[b-ftmb7tlyi2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.batch-stat-label[b-ftmb7tlyi2] {
    font-size: 0.8rem;
    color: var(--text-secondary, #888888);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.batch-stat-value[b-ftmb7tlyi2] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
}

.batch-stat-value.highlight-warn[b-ftmb7tlyi2] {
    color: #eab308;
}

/* Data Table */
.table-container[b-ftmb7tlyi2] {
    overflow-x: auto;
}

.data-table[b-ftmb7tlyi2] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.data-table th[b-ftmb7tlyi2] {
    padding: 0.6rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary, #888888);
    border-bottom: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
    white-space: nowrap;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.data-table td[b-ftmb7tlyi2] {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-primary, #ffffff);
}

.data-table tbody tr:hover[b-ftmb7tlyi2] {
    background: rgba(212, 175, 55, 0.03);
}

.col-name[b-ftmb7tlyi2] {
    text-align: left;
}

.col-num[b-ftmb7tlyi2] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.cmd-name[b-ftmb7tlyi2] {
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.82rem;
    color: #60a5fa;
}

/* Timing highlights */
.timing-warn[b-ftmb7tlyi2] {
    color: #eab308 !important;
}

.timing-critical[b-ftmb7tlyi2] {
    color: #ef4444 !important;
    font-weight: 600;
}

/* Slow Commands */
.slow-commands-list[b-ftmb7tlyi2] {
    display: flex;
    flex-direction: column;
}

.slow-command-card[b-ftmb7tlyi2] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: background 0.15s;
}

.slow-command-card:hover[b-ftmb7tlyi2] {
    background: rgba(212, 175, 55, 0.03);
}

.slow-command-card:last-child[b-ftmb7tlyi2] {
    border-bottom: none;
}

.slow-command-header[b-ftmb7tlyi2] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

.slow-timestamp[b-ftmb7tlyi2] {
    color: var(--text-secondary, #888888);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
}

.slow-name[b-ftmb7tlyi2] {
    color: #60a5fa;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.82rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slow-elapsed[b-ftmb7tlyi2] {
    font-weight: 600;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.slow-player[b-ftmb7tlyi2] {
    color: var(--text-secondary, #888888);
    font-size: 0.8rem;
    flex-shrink: 0;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slow-command-detail[b-ftmb7tlyi2] {
    padding: 0.5rem 1rem 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.slow-command-detail pre[b-ftmb7tlyi2] {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary, #888888);
    white-space: pre-wrap;
    word-break: break-all;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    max-height: 200px;
    overflow-y: auto;
}

/* Loading & Error */
.loading-container[b-ftmb7tlyi2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: var(--text-secondary, #888888);
}

.loading-spinner[b-ftmb7tlyi2] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin-b-ftmb7tlyi2 0.8s linear infinite;
}

.loading-spinner-small[b-ftmb7tlyi2] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: spin-b-ftmb7tlyi2 0.8s linear infinite;
}

@keyframes spin-b-ftmb7tlyi2 {
    to { transform: rotate(360deg); }
}

.error-container[b-ftmb7tlyi2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: #ef4444;
}

.btn-retry[b-ftmb7tlyi2] {
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}

/* GC Stats */
.gc-stats-grid[b-ftmb7tlyi2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-primary, rgba(212, 175, 55, 0.1));
}

.gc-events-list[b-ftmb7tlyi2] {
    display: flex;
    flex-direction: column;
    max-height: 200px;
    overflow-y: auto;
}

.gc-event[b-ftmb7tlyi2] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.gc-event:last-child[b-ftmb7tlyi2] {
    border-bottom: none;
}

.gc-gen[b-ftmb7tlyi2] {
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.gc-gen-0[b-ftmb7tlyi2] {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.gc-gen-1[b-ftmb7tlyi2] {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.gc-gen-2[b-ftmb7tlyi2] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.gc-heap[b-ftmb7tlyi2] {
    color: var(--text-secondary, #888888);
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
    margin-left: auto;
}

/* Time Slice Chart */
.chart-container[b-ftmb7tlyi2] {
    padding: 1rem 1.25rem;
}

.timeslice-chart[b-ftmb7tlyi2] {
    width: 100%;
    height: 224px;
    display: block;
}

.chart-label[b-ftmb7tlyi2] {
    font-size: 10px;
    fill: var(--text-secondary, #888888);
    font-family: 'Cascadia Code', 'Fira Code', monospace;
}

.chart-legend[b-ftmb7tlyi2] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.75rem;
}

.legend-item[b-ftmb7tlyi2] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-secondary, #888888);
    font-family: 'Cascadia Code', 'Fira Code', monospace;
}

.legend-color[b-ftmb7tlyi2] {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.chart-legend-hint[b-ftmb7tlyi2] {
    font-size: 0.78rem;
    color: var(--text-secondary, #888888);
    font-style: italic;
}

.no-data[b-ftmb7tlyi2] {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary, #888888);
    font-size: 0.9rem;
}
