/* Shared Sidebar Styles - Simple Plain Text Menu */

:root {
    --brand-dark: #0F2854;
    --brand-primary: #1C4D8D;
    --brand-secondary: #4988C4;
    --brand-light: #BDE8F5;
}

.sidebar {
    width: 200px;
    background: white;
    box-shadow: 2px 0 8px rgba(15, 40, 84, 0.08);
    overflow-y: auto;
    z-index: 99;
    /* Remove collapsed state - sidebar always visible */
}

.sidebar-content {
    padding: 1rem 0;
}

.nav-item {
    padding: 0.75rem 1.5rem;
    color: #111827;
    cursor: pointer;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.nav-item:hover {
    background: rgba(189, 232, 245, 0.1);
    border-left-color: var(--brand-secondary);
    color: var(--brand-primary);
}

.nav-item.active {
    background: rgba(189, 232, 245, 0.15);
    color: var(--brand-primary);
    border-left-color: var(--brand-primary);
    font-weight: 600;
}

/* Mobile responsive - hide sidebar on small screens */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 70px;
        height: calc(100vh - 70px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
}

/* Ensure sidebar is visible on desktop by default */
@media (min-width: 769px) {
    .sidebar {
        transform: translateX(0) !important;
    }
}
