/* Booking Calendar CSS */

/* Calendar container */
#booking-calendar {
  background-color: #fbe3ef;
  padding: 15px;
  border-radius: 16px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

/* Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}

/* Navigation buttons */

.calendar-nav {
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
}

#prev-month {
  background-image: url('left-arrow_318226.png');
}

#next-month {
  background-image: url('arrow_13538981.png');
}

.calendar-nav:hover {
  opacity: 0.8;
}

.calendar-title {
  flex-grow: 1;
  text-align: center;
  font-size: 20px;
  color: #333;
}

/* Calendar table */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent !important;
}

.calendar-table th {
  padding: 6px;
  color: #555;
  font-weight: 600;
}

.calendar-table td {
  width: 14.2%;
  height: 45px;
  text-align: center;
  vertical-align: middle;
}

.calendar-day {
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.calendar-day:hover {
  background: #4B2E4B;
  color: #fff;
}

.empty {
  background: transparent;
}

/* Modal styling */
.cf7-modal {
  display: none !important; /* Force hide by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  align-items: center;
}

.cf7-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cf7-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cf7-close:hover {
  color: #4B2E4B;
}
