/* === SIDEBAR NAVIGATION === */
.sidebar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.8rem 1.5rem;
    border-radius: 2rem;
    min-width: 200px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    position: sticky;
    top: 1.5rem;
}

.sidebar-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7a6a92;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 0.3rem;
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #2d1f4a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.sidebar a i {
    width: 20px;
    text-align: center;
    color: #7a6a92;
    font-size: 1rem;
    transition: color 0.2s;
}

.sidebar a:hover {
    background: rgba(124, 58, 237, 0.08);
    transform: translateX(4px);
}

.sidebar a:hover i {
    color: #7c3aed;
}

.sidebar a.active {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}

.sidebar a.active i {
    color: #7c3aed;
}

/* Active indicator dot */
.sidebar a.active::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #7c3aed;
    border-radius: 4px;
}

/* Subpage indicator badge */
.badge {
    margin-left: auto;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}
