/* DISH-nahe, browserübergreifend stabile Formularelemente */
.booking-panel input:not([type="checkbox"]),
.booking-panel select {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 46px;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: normal;
  text-transform: none;
  color-scheme: light;
}
.booking-panel select {
  -webkit-appearance: menulist;
  appearance: auto;
  padding-right: 34px;
}
.booking-panel input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  text-align: left;
  cursor: pointer;
}
.booking-panel input[type="date"]::-webkit-date-and-time-value {
  min-height: 20px;
  margin: 0;
  text-align: left;
  color: #555;
}
.booking-panel input[type="date"]::-webkit-datetime-edit {
  display: block;
  padding: 0;
  color: #555;
  line-height: 20px;
}
.booking-panel input[type="date"]::-webkit-calendar-picker-indicator {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 3px;
  cursor: pointer;
  opacity: .8;
}
.booking-panel textarea {
  box-sizing: border-box;
  min-height: 116px;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
}
.booking-panel input:not([type="checkbox"]):focus,
.booking-panel select:focus,
.booking-panel textarea:focus {
  border-color: #777;
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.booking-panel input:disabled,
.booking-panel select:disabled {
  background-color: #eee;
  color: #777;
  opacity: 1;
  -webkit-text-fill-color: #777;
}
.booking-panel input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: auto;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--accent);
}
.booking-panel .button {
  min-height: 46px;
  padding: 0 25px;
  border-radius: 100px;
}
@supports (-webkit-touch-callout: none) {
  .booking-panel input:not([type="checkbox"]),
  .booking-panel select { line-height: normal; }
  .booking-panel input[type="date"] { padding-top: 0; padding-bottom: 0; }
}

/* Sichtbare Datumsschale: umgeht Safaris fehlerhafte Textpositionierung im nativen Feld. */
.booking-panel .date-control {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 42px 0 12px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
}
.booking-panel .date-control:focus-within {
  border-color: #777;
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.booking-panel .date-display {
  display: block;
  width: 100%;
  overflow: hidden;
  color: #999;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}
.booking-panel .date-display.selected { color: #555; }
.booking-panel .date-control::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 14px;
  width: 15px;
  height: 14px;
  box-sizing: border-box;
  border: 1.5px solid #666;
  border-radius: 2px;
  box-shadow: inset 0 4px 0 -2px #666;
  pointer-events: none;
}
.booking-panel .date-control input[type="date"] {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
