/* sidebar.css */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    position: fixed;
    padding: 24px 16px;
    overflow-y: auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 32px;
}

.section-title {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin: 20px 8px 12px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-link.active {
    background: #eef2ff;
    color: var(--primary-blue);
}

.nav-link:hover:not(.active) {
    background: #f1f5f9;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}