/* ==================== SIDEBAR ==================== */
.sidebar {
    width: 280px;
    background: #202020;
    border-right: 1px solid #404040;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* ==================== PROFILE SECTION ==================== */
.profile-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #404040;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 5px;
}

.profile-title {
    font-size: 13px;
    color: #a3a3a3;
}

/* ==================== CATEGORIES ==================== */
.categories {
    flex: 1;
}

.category-title {
    font-size: 11px;
    font-weight: 600;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    margin-top: 20px;
}

.category-item {
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    font-size: 13px;
    color: #a3a3a3;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #f97316;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
}

.category-item:hover {
    background: #404040;
    color: #e5e5e5;
    transform: translateX(2px);
}

.category-item:hover::before {
    transform: translateX(0);
}

.category-item.active {
    background: #f97316;
    color: white;
    transform: translateX(2px);
}

.category-item.active::before {
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.3);
}