/* Style pour l'avatar rond */
.avatar-plus-image {
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.avatar-plus-image:hover {
    opacity: 0.8;
}

/* Styles pour la page de réglages */
.avatar-plus-settings {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.avatar-plus-preview {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.avatar-plus-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.avatar-plus-success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.avatar-plus-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Style pour l'avatar par défaut */
.avatar-plus-default {
    border: 2px solid #f1f1f1;
    background-color: #f9f9f9;
    padding: 5px;
}

.button-save {
    background-color: #ff7700;
    color: white;
}