body.booking-modal-open {
  overflow: hidden;
}

.appointado-booking-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.appointado-booking-modal-overlay.booking-modal-open {
  opacity: 1;
  pointer-events: auto;
}

.appointado-booking-modal-container {
  background-color: white;
  border-radius: 10px;
  width: 90vw;
  max-width: 420px;
  height: 700px;
  max-height: 85vh;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.appointado-booking-modal-container.booking-modal-open {
  opacity: 1;
  transform: translateY(0);
}

.appointado-booking-iframe {
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.appointado-booking-close-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0.5rem 0;
  border-radius: 9999px;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  z-index: 1000000;
}
