.buchung-error {
  background: #ffe7e7;
  color: #a33;
  border: 1.5px solid #f7caca;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 600;
}
.buchung-success {
  background: #d3ffd3;
  color: #227822;
  border: 1.5px solid #b1eab1;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 600;
}

#buchungsformular {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0001;
  padding: 26px 26px 16px 26px;
}
#buchungsformular label {
  display: block;
  margin: 14px 0 6px 0;
  font-weight: 600;
  color: #753b61;
}
#buchungsformular input,
#buchungsformular textarea,
#buchungsformular select {
  font-size: 1.08rem;
  border-radius: 12px;
  border: 1.2px solid #753b61;
  padding: 8px 14px;
  width: 100%;
  background: #fff;
  color: #222;
  margin-bottom: 10px;
  box-sizing: border-box;
  transition: border 0.13s;
}
#buchungsformular input:focus,
#buchungsformular textarea:focus {
  border: 1.5px solid #a86796;
  outline: none;
}

#buchungsformular textarea {
  min-height: 80px;
  resize: vertical;
}

.sprechzeit-wrap {
  margin-bottom: 10px;
  color: #222;
  font-size: 1.05rem;
}

/* Button */
#buchungsformular .buchung-btn {
  background: #fff;
  color: #222;
  font-size: 1.12rem;
  border-radius: 14px;
  border: 2px solid #753b61;
  padding: 12px 34px;
  margin-top: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px #753b6133;
  transition: background 0.12s, color 0.12s, border 0.12s;
}
#buchungsformular .buchung-btn:hover {
  background: #f3e9f0;
  color: #753b61;
  border: 2px solid #753b61;
}

/* Select2 – Input immer wie erstes Feld (Fix für Layout nach Auswahl) */
.select2-selection--multiple .select2-search--inline .select2-search__field {
    min-width: 120px !important;
    width: auto !important;
    font-size: 1.1em !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 32px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
.select2-selection__rendered {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 0 8px;
    min-height: 44px;
    padding: 6px 10px !important;
}
.select2-selection__choice {
    margin: 2px 6px 2px 0 !important;
    padding: 4px 16px 4px 10px !important;
    font-size: 1.04em !important;
}

/* Damit das leere Feld keinen komischen Rahmen bekommt */
.select2-selection--multiple .select2-search__field:focus {
    outline: none !important;
    box-shadow: none !important;
}
.theo-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.theo-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 #753b6120;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theo-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}
.theo-card h4 {
  font-size: 1.13em;
  margin: 12px 0 0 0;
  text-align: center;
}

