/* =========================================================
   Schwabenmühle Buchung Demo – v2.0.1 (Basis: v1.8.2)
   Ziel: "unterster Basic" – kompakter, ruhiger, stabil.
   Overrides zum Basis-Stylesheet smb-buchung-demo.v1.6.3.css
   ========================================================= */

:root{
  --smb-gap: 12px;
  --smb-radius: 8px;
}

/* Überschrift */
.smb-form h3{
  margin: 0 0 14px 0;
  font-size: 28px;
  line-height: 1.1;
}

/* Labels */
.smb-field label{
  margin: 0 0 4px 0;
  font-size: 13px;
}

/* Felder */
.smb-field input,
.smb-field select,
.smb-field textarea{
  padding: 8px 10px;
  font-size: 16px;
  border-radius: 8px;
}

/* Datumfelder */
.smb-field.smb-date input[type=date]{
  padding: 7px 10px;
  font-size: 15px;
}

/* Mengenfelder (Erwachsene/Kinder etc.) */
.smb-qtyrow-inner{
  grid-template-columns: 60px 1fr;
  gap: 10px;
}
.smb-qtyinput{
  width: 60px;
  padding: 6px 8px;
  font-size: 16px;
}
.smb-qtylabel{
  font-size: 14px;
}

/* Textbereiche */
.smb-message textarea{
  min-height: 120px;
}

/* Buttons */
.smb-actions{
  gap: 10px;
}
.smb-actions button{
  padding: 11px 14px;
  font-size: 16px;
  max-width: 260px;
}

/* Responsive */
@media (max-width:700px){
  .smb-form h3{font-size: 24px;}
}

/* =========================================================
   v2.0.5 Hotfix: Theme überschreibt <select>-Breiten ("Deu", "Kom" ...)
   Erzwinge volle Breite der Selects innerhalb der SMB-Form.
   ========================================================= */

/* Selects IMMER volle Spaltenbreite */
.smb-wrap .smb-field select{
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* Manche Themes setzen fixed width auf option/select via inline-block */
.smb-wrap select{
  width: 100% !important;
  max-width: 100% !important;
}

/* Sicherstellen, dass die Spalten selbst nicht schrumpfen */
.smb-wrap,
.smb-wrap .smb-form,
.smb-wrap .smb-grid,
.smb-wrap .smb-field{
  width: 100% !important;
  max-width: 100% !important;
}

/* Container soll sich am Content-Bereich orientieren, aber nie winzig werden */
.smb-wrap{ 
  max-width: 980px !important;
  margin: 0 auto !important;
}
