/* Styles pour les avatars utilisateur */

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 12px;
    font-weight: 600;
}

.avatar-md {
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
}

.avatar-lg {
    width: 60px;
    height: 60px;
    font-size: 18px;
    font-weight: 600;
}

.avatar-xl {
    width: 80px;
    height: 80px;
    font-size: 24px;
    font-weight: 600;
}

/* Couleurs personnalisées pour les avatars */
.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-indigo {
    background-color: #6610f2 !important;
}

.bg-pink {
    background-color: #e83e8c !important;
}

.bg-teal {
    background-color: #20c997 !important;
}

.bg-orange {
    background-color: #fd7e14 !important;
}

/* Animation hover pour les avatars */
.avatar-sm:hover,
.avatar-md:hover,
.avatar-lg:hover,
.avatar-xl:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

/* Styles pour les avatars dans les dropdowns */
.profile-avatar {
    width: 35px;
    height: 35px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-avatar2 {
    width: 40px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Responsive avatars */
@media (max-width: 768px) {
    .avatar-lg {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .avatar-xl {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}
