input:disabled,
select:disabled {
  background-color: #f5f5f5;
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
}


.termin-formular {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-row .tagify {
  width: 100%;
}

.zweispaltig {
  display: flex;
  gap: 1rem;
}

.zweispaltig > div {
  flex: 1;
}

.fieldset-klein {
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: #f9f9f9;
}

.fieldset-klein .form-row {
  margin: 0;
  padding: 0;
}

.fieldset-wiederholung {
  border: 1px solid #bbb;
  padding: 1rem;
  border-radius: 5px;
  background: #fcfcfc;
}

.form-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}


/* Formatierung der Checkboxen */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  margin: 0;
}





 /* Customize the label (the container) */
.form-checkbox-custom {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.form-checkbox-custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.form-checkmark-custom {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.form-checkbox-custom:hover input ~ .form-checkmark-custom {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.form-checkbox-custom input:checked ~ .form-checkmark-custom {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.form-checkmark-custom:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-checkbox-custom input:checked ~ .form-checkmark-custom:after {
  display: block;
}

/* Style the checkmark/indicator */
.form-checkbox-custom .form-checkmark-custom:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 
