
/*# sourceMappingURL=custom.min.css.map */


.avatar-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Abstand zwischen Avataren */
}

.avatar-group-item {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
}

.avatar-group-item .avatar-xs {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-group-item .avatar-xs img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Sorgt dafür, dass das Bild korrekt skaliert wird */
    border-radius: 50%;
}
