.booking-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: bp-fade-in 0.25s ease;
}

.booking-popup {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: bp-pop-in 0.3s ease;
}

.booking-popup-icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  font-size: 30px;
  margin: 0 auto 16px;
  color: #ffffff;
}

.booking-popup.success .booking-popup-icon {
  background: #2ecc71;
}

.booking-popup.error .booking-popup-icon {
  background: #e74c3c;
}

.booking-popup p {
  margin: 0;
  font-size: 16px;
  color: #333333;
  font-weight: 600;
  line-height: 1.5;
}

@keyframes bp-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bp-pop-in {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
