/* Container der Radiobutton-Gruppe horizontal */
.tx-form-form [role="radiogroup"] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
}

/* einzelne Optionen inline */
.tx-form-form [role="radiogroup"] .form-check {
    display: inline-flex !important;
    align-items: center;
    margin-bottom: 0 !important;
}

/* echten Radio-Button verstecken */
.tx-form-form .form-check-input {
    display: none !important;
}

/* Label wie Button darstellen */
.tx-form-form .form-check-label {
    font-size: 34px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f3f3f3;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

/* Hover-Effekt */
.tx-form-form .form-check-label:hover {
    transform: scale(1.2);
}

/* ausgewählte Option */
.tx-form-form .form-check-input:checked + .form-check-label {
    background: #ffe8a3;
    transform: scale(1.35);
}

/* Abstand zwischen Fragen */
.tx-form-form .form-element {
    margin-bottom: 28px;
}
