.avatar-preview-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    align-items: flex-end;
    margin-bottom: 1em;
}

.avatar-preview-pane {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}

.avatar-preview-container:not(.avatar-preview-visible) {
    display: none;
}

.avatar-preview-label {
    font-weight: 600;
    color: var(--color-text, #1d1d1f);
}

.avatar-preview-frame {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
}

.avatar-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-preview-hidden {
    display: none;
}
