.box-utente {
    width: 100%;
    max-width: 570px;
    height: auto;
    margin: 0 auto 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: pink;
    display: flex;
    align-items: center;
    gap: 20px;
}

/**/

.box-utente-avatar {
    width: 120px;
    height: 120px;
    border: 1px solid #ddd;
    border-radius: 5px;/*50%*/
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.9);

    display: flex;
    justify-content: center;
    align-items: center;
}

.box-utente-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/**/

.box-utente-info {
    width: 100%;
    height: auto;
}

/*
.box-utente-id,
.box-utente-riga {
    margin: 0 0 10px;
    line-height: 1.4;
}
*/

/**/