/* ═══ SIDEBAR ═══ */
.sidebar {
    position: fixed;
    top: 52px;
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    background: var(--sidebar-bg);
    z-index: 150;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.sidebar-search {
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-search input {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    color: white;
    outline: none;
}
.sidebar-search input::placeholder { color: rgba(255,255,255,0.3); }
.sidebar-search input:focus { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }

.sidebar-section {
    padding: 16px 0 8px;
}
.sidebar-section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.3);
    padding: 0 20px 8px;
}
.sidebar-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.12s;
    border-left: 3px solid transparent;
    gap: 10px;
}
.sidebar-nav-item:hover { background: var(--sidebar-hover); color: rgba(255,255,255,0.9); }
.sidebar-nav-item.active {
    background: var(--sidebar-active);
    color: white;
    border-left-color: #4a9eff;
    font-weight: 600;
}
.sidebar-nav-item .nav-icon {
    width: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}
.sidebar-nav-item.active .nav-icon { opacity: 1; }
.sidebar-nav-item .nav-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
}
.sidebar-nav-item.active .nav-badge { color: rgba(255,255,255,0.6); }

.sidebar-filters {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}
.sidebar-filters label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
    margin-top: 10px;
}
.sidebar-filters label:first-child { margin-top: 0; }
.sidebar-filters select {
    width: 100%;
    padding: 7px 8px;
    font-size: 12px;
    font-family: inherit;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
    outline: none;
    cursor: pointer;
}
.sidebar-filters select:focus { border-color: rgba(255,255,255,0.3); }
