/* Profile and Menu Icon Styles */

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.profile-avatar svg {
    color: rgba(255, 255, 255, 0.7);
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon svg {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.menu-item:hover .menu-icon svg {
    color: var(--accent-primary);
}

.menu-item:active .menu-icon svg {
    color: var(--accent-primary);
    transform: scale(0.95);
}