/* CSS Sidebar Global Synchronization */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 8px 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1a202c;
}

.nav-item.active {
    background: rgba(19, 182, 236, 0.1);
    color: #13b6ec;
    font-weight: 600;
}

.nav-item .icon {
    font-size: 1.1rem;
}