/*! MH — Woo Bookings Auto Date Styles v1.2.0 */

/* Force hide calendar elements when single date/time */
.mh-hide-calendar .picker,
.mh-hide-calendar .wc-bookings-date-picker-date-fields,
.mh-hide-calendar .block-picker,
.mh-hide-calendar .form-field-wide:has(.block-picker),
.mh-hide-calendar fieldset.wc_bookings_field_start_date,
.mh-hide-calendar .wc-bookings-date-picker {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mh-booking-summary {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.mh-booking-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mh-booking-info p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #212529;
}

.mh-booking-info strong {
  color: #495057;
  font-weight: 600;
  margin-right: 8px;
}

.mh-booking-date,
.mh-booking-time-placeholder {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

.mh-time-loading {
  color: #6c757d;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mh-booking-summary {
    padding: 15px;
    margin: 15px 0;
  }
  
  .mh-booking-info p {
    font-size: 14px;
  }
  
  .mh-booking-date,
  .mh-booking-time-placeholder {
    padding: 10px 12px;
  }
}
