
/* ======= FULLCALENDAR STYLES ======= */
.calendar-container {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.fc {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fc .fc-button-primary {
  background-color: #0052CC;
  border-color: #0052CC;
}

.fc .fc-button-primary:hover {
  background-color: #0041AA;
  border-color: #0041AA;
}

.fc .fc-button-primary.fc-button-active {
  background-color: #0041AA;
  border-color: #0041AA;
}

.fc .fc-daygrid-day.fc-day-other {
  background-color: #fafafa;
}

.fc .fc-daygrid-day-frame {
  min-height: 100px;
}

.fc .fc-event {
  border-radius: 6px;
  padding: 4px;
}

.fc .fc-col-header-cell {
  background-color: #f9f9f9;
  font-weight: 600;
  color: #333;
}

/* ======= MODAL STYLES ======= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content-booking {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #333;
}

.modal-content-booking h3 {
  margin: 0 0 30px 0;
  font-size: 24px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0052CC;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.price-info {
  background-color: #f0f7ff;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border-left: 4px solid #0052CC;
}

.price-info p {
  margin: 0;
  color: #0052CC;
  font-size: 16px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0052CC, #0041AA);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.3);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .calendar-container {
    padding: 10px;
  }

  .modal-content-booking {
    padding: 25px;
    max-width: 90%;
  }

  .fc .fc-daygrid-day-frame {
    min-height: 70px;
  }
}
