/* === CF7 Branching Styles === */

/* Standardmäßig alle Steps unsichtbar */
.cf7-branch .cf7-step {
  display: none;
}

/* Der gerade aktive Step */
.cf7-branch .cf7-step.is-active {
  display: block;
}

/* Grundlayout */
.cf7-branch fieldset {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fafafa;
  transition: all 0.3s ease;
}

/* Titel der Fragen */
.cf7-branch legend {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* kleine erklärende Texte */
.cf7-branch .hint {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 6px;
}

/* Link für “Neu starten” */
.cf7-branch a.btn-back {
  text-decoration: underline;
  cursor: pointer;
  color: #0073aa;
}

.cf7-branch a.btn-back:hover {
  color: #005177;
}

/* Etwas mehr Abstand zwischen Radiobuttons */
.cf7-branch input[type="radio"] + span {
  margin-right: 20px;
  cursor: pointer;
}

/* Größere Ja/Nein-Buttons */
.cf7-branch input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: #cc0000; /* ändert die Farbe des Kreises (modernere Browser) */
  cursor: pointer;
  transform: scale(1.3);
  margin-right: 8px;
}

/* Größerer Text daneben */
.cf7-branch label,
.cf7-branch span.wpcf7-list-item-label {
  font-size: 1.1rem;
  font-weight: 5000;
  cursor: pointer;
}

/* Etwas Abstand zwischen den beiden Optionen */
.cf7-branch .wpcf7-list-item {
  margin-right: 25px;
}
