/* RESERVATIONS CLEAN – passend zum HSB/Miami Style */

.res_tab,
.res_tabcontent,
.res_ausgabe,
.res_add,
.res_mod,
.reservations_index {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Tabs */
.res_tab {
  width: 760px;
  max-width: calc(100% - 32px);
  margin: 24px auto 0;
  padding: 8px;
  border: 1px solid rgba(233, 141, 136, .20);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 253, 249, .96);
  display: flex;
  justify-content: center;
  gap: 6px;
}

.res_tab button {
  float: none;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(233, 141, 136, .18);
  border-radius: 999px;
  background: rgba(255, 238, 232, .70);
  color: #a57669;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
}

.res_tab button:hover,
.res_tab button.active {
  background: #e98d88;
  color: #fff;
}

/* Hauptbox */
.res_tabcontent {
  width: 760px;
  max-width: calc(100% - 32px);
  margin: 0 auto 28px;
  padding: 20px;
  border: 1px solid rgba(233, 141, 136, .20);
  border-radius: 0 0 16px 16px;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 16px 34px rgba(118, 92, 70, .09);
}

/* Titel */
.res_ausgabe h1,
.res_add h2,
.res_mod h2 {
  width: 100%;
  margin: 0 0 16px;
  color: #9a705b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  text-transform: lowercase;
  letter-spacing: .12em;
}

.res_ausgabe h1:after,
.res_add h2:after,
.res_mod h2:after {
  content: "reservations";
  display: block;
  margin-top: 7px;
  color: #579b94;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .20em;
}

/* Reservierungs-Ausgabe */
.res_ausgabe {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.res_ausgabe h1 {
  grid-column: 1 / -1;
}

.res_ausgabe .res_bit,
.reservations_index {
  margin: 0;
  padding: 13px 14px;
  min-height: 82px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(233, 141, 136, .16);
  color: #6f625b;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 8px 18px rgba(118, 92, 70, .05);
}

.res_ausgabe .res_bit b,
.reservations_index b,
.res_ausgabe .res_bit strong,
.reservations_index strong {
  color: #9a705b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
}

.res_ausgabe .res_bit a,
.reservations_index a {
  color: #579b94 !important;
  font-weight: 900;
  text-decoration: none !important;
}

/* Buttons */
.res_bit form {
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
}

.res_bit input[type="submit"],
.res_bit button,
.res_add_save input,
.res_add_save button,
.res_mod input[type="submit"],
.res_mod button {
  min-height: 26px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #e98d88;
  color: #fff !important;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
}

/* Formular */
.res_add,
.res_mod {
  width: 100%;
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(191, 157, 132, .16);
  background: rgba(255, 255, 255, .62);
}

.res_add {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.res_add h2,
.res_add_save {
  grid-column: 1 / -1;
}

.res_add_inputs,
.res_add_select {
  margin: 0;
  text-align: center;
}

.res_add_inputs label,
.res_add_select label,
.res_mod label {
  display: block;
  margin-bottom: 5px;
  color: #9a705b;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.res_add input,
.res_add select,
.res_add textarea,
.res_mod input,
.res_mod select,
.res_mod textarea {
  width: 100%;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(191, 157, 132, .20);
  border-radius: 12px;
  background: rgba(255, 253, 249, .92);
  color: #6f625b;
  font-size: 10px;
  outline: none;
}

.res_add input[type="radio"],
.res_add input[type="checkbox"],
.res_mod input[type="radio"],
.res_mod input[type="checkbox"] {
  width: 12px;
  height: 12px;
  min-height: 18px;
  padding: 0;
  accent-color: #e98d88;
}

.res_add_save {
  margin-top: 4px;
  text-align: center;
}

/* Hinweise */
.res_tabcontent small,
.res_tabcontent .smalltext {
  display: block;
  margin-top: 12px;
  color: #8a756b;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

/* Mobil */
@media (max-width: 760px) {
  .res_tab,
  .res_tabcontent {
    width: calc(100% - 24px);
  }

  .res_tab {
    flex-wrap: wrap;
  }

  .res_ausgabe,
  .res_add {
    grid-template-columns: 1fr;
  }
}

/* Reservierungen enger untereinander */
.res_ausgabe > .res_bit {
    gap: 3px !important;
}

.res_ausgabe > .res_bit > .res_bit {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 11px 10px !important;
    line-height: 1.25 !important;
}