.booking-widget {
  width: 100%;
  display: block;
  user-select: none;
  transition: height 300ms;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}
.booking-widget.search-results {
  filter: none;
}

.booking-widget-error {
  font-size: 18px;
  font-weight: 600;
  color: #D92D20;
}

.booking-modal {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  inset: 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.booking-modal.open {
  display: block;
}
body:has(.booking-modal.open), html:has(.booking-modal.open) {
  overflow: hidden;
}