/* === Booking Popup Styling === */

.booking-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.booking-popup {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  direction: ltr;
  text-align: left;
  animation: fadeIn 0.25s ease-out;
}

.booking-popup-close {
  float: right;
  border: none;
  background: none;
  font-size: 1.3em;
  cursor: pointer;
  color: #555;
  transition: color 0.2s;
}
.booking-popup-close:hover {
  color: #000;
}

.booking-popup-title {
  color: #007bff;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: 600;
}

.booking-popup-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.booking-popup-tab {
  border: 1px solid #007bff;
  background: white;
  color: #007bff;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.booking-popup-tab.active {
  background: #007bff;
  color: white;
}

.booking-popup-tab:hover {
  background: #e9f2ff;
}

.booking-popup-content {
  border-top: 2px solid #007bff;
  padding-top: 10px;
  direction: ltr;
  text-align: left;
}

.booking-popup-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  direction: ltr;
  text-align: left;
}

.booking-popup-table th {
  padding: 8px;
  border: 1px solid #ccc;
  background: #007bff;
  color: white;
}

.booking-popup-table td {
  padding: 6px;
  border: 1px solid #ddd;
  direction: rtl;
  text-align: right;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}