/* ----------------------------------------------------------------------------
 * Easy!Appointments - Online Appointment Scheduler
 *
 * @package     EasyAppointments
 * @author      A.Tselegidis <alextselegidis@gmail.com>
 * @copyright   Copyright (c) Alex Tselegidis
 * @license     https://opensource.org/licenses/GPL-3.0 - GPLv3
 * @link        https://easyappointments.org
 * @since       v1.5.0
 * ---------------------------------------------------------------------------- */
/* Responsive booking wizard styles (rounded corners and shadow on md+ screens) */
@media (min-width: 768px) {
  #book-appointment-wizard {
    border-radius: var(--bs-border-radius) !important;
    box-shadow: var(--bs-box-shadow-sm) !important;
  }
}
/* Booking header - calm, neutral accent */
#book-appointment-wizard #header.booking-header {
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(var(--bs-secondary-rgb, 108, 117, 125), 0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--bs-border-color);
}

#book-appointment-wizard .booking-header-logo {
  max-height: 80px;
  margin-bottom: 0.75rem;
}

#book-appointment-wizard .booking-header-service {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--bs-secondary-color);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#book-appointment-wizard .selected-appointment-summary {
  font-size: 1rem;
  color: var(--bs-body-color);
}

/* Selected hour button state */
#book-appointment-wizard #available-hours {
  max-height: 300px;
}

#book-appointment-wizard #available-hours .available-hour {
  margin-bottom: 10px;
}

#book-appointment-wizard #available-hours .selected-hour {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

/* Captcha refresh icon hover effect */
#book-appointment-wizard .captcha-title .fa-sync-alt {
  cursor: pointer;
  transition: all 0.3s linear;
}

#book-appointment-wizard .captcha-title .fa-sync-alt:hover {
  color: var(--bs-primary);
}

/* Language popover list */
.popover .popover-title {
  text-align: center;
}

.popover .popover-content #language-list .language {
  margin: 15px 0;
}

#book-appointment-wizard .flatpickr-calendar.inline {
  margin: auto;
}