.webform-element-more--link,
.webform-element-more--content
.webform-element-more-content {
    font-family: "Source Sans Pro", sans-serif;
  font-size: 1.1875rem;
}

details {
  border: none!important;
  border:0;
  scrollbar-width: none;
}

details > summary {
  display: revert;
}

.js details[open] {
  background-color: white;
}

.webform-submission-form .form-actions .button, .webform-submission-form .form-actions .button:hover {
background-color: #662b85;
  color: #fff;
}


/* Checkboxen-Hilfe: Icon klebt am Text */

.form-check-label {
    display: inline !important;    /* Zurück zum Textfluss, damit das Icon wie ein Buchstabe behandelt wird */
    line-height: 1.5;
    vertical-align: middle;
}

.webform-element-help {
    /* Dimensionen & Form */
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    border-radius: 50% !important;
    
    /* WICHTIG: inline-flex erlaubt Zentrierung des "?" TROTZ Textfluss */
    display: inline-flex !important; 
    align-items: center !important;
    justify-content: center !important;
    
    /* Abstände & Ausrichtung */
    margin-left: 6px !important;    /* Abstand zum Text */
    vertical-align: middle !important; /* Zentriert den Kreis zur Texthöhe */
    position: relative;
    top: -1px;                      /* Feinjustierung auf der Textlinie */
    white-space: nowrap !important;
    
    /* Optik */
    font-size: 14px !important;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.webform-element-help:hover {
    background-color: #662b85 !important;
    border-color: #662b85 !important;
    color: #ffffff !important;
}

/* Verhindert, dass das "?" im Kreis verrutscht */
.webform-element-help span[aria-hidden="true"] {
    line-height: 1 !important;
    display: block !important;
}
.fieldset-wrapper {
  margin-bottom: 25px !important; /* Erzeugt Abstand zum nächsten Feld */
}

.flexbox-segmente {
  display: flex;
  margin-left: 24px;
}

/* Optional: Am Handy den Rand etwas verringern, falls es dort zu eng wird */
@media (max-width: 600px) {
  .flexbox-segmente {
    margin-left: 12px;
  }
}