/* /Components/Layout/MainLayout.razor.rz.scp.css */
.uat-banner[b-36zer9c2g6] {
    background-color: #f97316; /* Premium orange */
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 6px;
    font-size: 13px;
    letter-spacing: 0.5px;
    z-index: 1000;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.layout-container[b-36zer9c2g6] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 32px); /* Adjust for banner */
    background: #0f172a;
}

.main-content[b-36zer9c2g6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #020617; /* Darker background for main area */
}

#blazor-error-ui[b-36zer9c2g6] {
    background: #7f1d1d;
    bottom: 0;
    box-shadow: 0 -4px 18px rgba(0,0,0,.35);
    color: white;
    display: none;
    left: 0;
    padding: .8rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

#blazor-error-ui .dismiss[b-36zer9c2g6] {
    cursor: pointer;
    position: absolute;
    right: .75rem;
    top: .5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu.razor.css */
.top-navbar[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0f172a; /* Premium dark navy */
    height: 70px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 100;
}

/* Brand Area */
.brand-area[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
}

.brand-link[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.brand-mark[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-weight: 800;
    font-size: 18px;
    border-radius: 8px;
}

.brand-text[b-fp8cycjzgx] {
    display: flex;
    flex-direction: column;
}

.brand-text strong[b-fp8cycjzgx] {
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.brand-text small[b-fp8cycjzgx] {
    color: #94a3b8;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Center Menu */
.nav-menu-center[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-link[b-fp8cycjzgx], .drop-btn[b-fp8cycjzgx] {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: inherit;
}

.menu-link:hover[b-fp8cycjzgx], .drop-btn:hover[b-fp8cycjzgx] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.menu-link.active[b-fp8cycjzgx] {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.dropdown[b-fp8cycjzgx] {
    position: relative;
}

.drop-panel[b-fp8cycjzgx] {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-width: 220px;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    z-index: 1000;
}

.drop-item[b-fp8cycjzgx] {
    padding: 10px 16px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.drop-item:hover[b-fp8cycjzgx] {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.drop-item.active[b-fp8cycjzgx] {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-left: 3px solid #3b82f6;
    padding-left: 13px;
}

/* Right Actions */
.nav-actions[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-badge[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pulse-dot[b-fp8cycjzgx] {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-b-fp8cycjzgx 1.5s infinite;
}

@keyframes pulse-b-fp8cycjzgx {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* User Dropdown */
.user-dropdown-container[b-fp8cycjzgx] {
    position: relative;
}

.user-drop-btn[b-fp8cycjzgx] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.user-drop-btn:hover[b-fp8cycjzgx] {
    background: rgba(255, 255, 255, 0.05);
}

.user-info[b-fp8cycjzgx] {
    display: flex;
    flex-direction: column;
}

.user-name[b-fp8cycjzgx] {
    color: white;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.user-role-badge[b-fp8cycjzgx] {
    color: #60a5fa;
    font-size: 11px;
    font-weight: 500;
}

.caret[b-fp8cycjzgx] {
    color: #64748b;
    font-size: 10px;
    font-style: normal;
}

.user-drop-panel[b-fp8cycjzgx] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    z-index: 1000;
}

.user-drop-item[b-fp8cycjzgx] {
    padding: 10px 16px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
}

.user-drop-item:hover[b-fp8cycjzgx] {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.divider[b-fp8cycjzgx] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

.logout-btn[b-fp8cycjzgx] {
    color: #f87171;
}

.logout-btn:hover[b-fp8cycjzgx] {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
}

/* Responsive */
@media (max-width: 1150px) {
    .nav-menu-center[b-fp8cycjzgx] {
        display: none; /* In a real app, implement hamburger. For now, hide on very small screens to avoid breaking layout */
    }
}
