// Stylage de l'image de profil dans la liste des utilisateurs
.avatar {
    display: flex;
    justify-content: center;

    a {
        display: block;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        overflow: hidden;

        .img-fluid {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }
}

// Stylage des boutons d'upload
.ea-fileupload .custom-file-label {
    width: initial !important;
    padding: 3px 7px 3px 7px !important;
}

.service-icon {
    display: flex;
    justify-content: center;

    a {
        display: block;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        overflow: hidden;

        .img-fluid {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }
}