/* _content/RealTimeDashboard/Shared/MainLayout.razor.rz.scp.css */
.page[b-vqbduo958b] {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

main[b-vqbduo958b] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sidebar[b-vqbduo958b] {
    width: 60px;
    height: 100vh;
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
    overflow: hidden;
    transition: width 0.2s ease;
}

.sidebar:hover[b-vqbduo958b] {
    width: 220px;
}

.sidebar[b-vqbduo958b]  .nav-label {
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar:hover[b-vqbduo958b]  .nav-label {
    opacity: 1;
}

.top-row[b-vqbduo958b] {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 48px;
    flex-shrink: 0;
}

.content[b-vqbduo958b] {
    flex: 1;
    padding: 1.5rem;
}

.app-footer[b-vqbduo958b] {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.app-footer a[b-vqbduo958b] {
    color: var(--accent-blue);
    text-decoration: none;
}

.app-footer a:hover[b-vqbduo958b] {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sidebar[b-vqbduo958b] {
        display: none;
    }

    .content[b-vqbduo958b] {
        padding: 1rem;
    }
}
/* _content/RealTimeDashboard/Shared/NavMenu.razor.rz.scp.css */
.sidebar-nav[b-7axbqzgn6f] {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 0.75rem;
}

.sidebar-brand[b-7axbqzgn6f] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 12px;
    margin-bottom: 1rem;
}

.brand-icon[b-7axbqzgn6f] {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--accent-blue);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.sidebar-links[b-7axbqzgn6f] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 12px;
}

.sidebar-links[b-7axbqzgn6f]  a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: color 0.15s, background 0.15s;
}

.sidebar-links[b-7axbqzgn6f]  a:hover {
    color: var(--text-primary);
    background: rgba(47,129,247,0.1);
}

.sidebar-links[b-7axbqzgn6f]  a.active {
    color: var(--accent-blue);
    background: rgba(47,129,247,0.15);
}

.sidebar-links[b-7axbqzgn6f]  .oi {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
