/* Base page styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #004aad;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

#hero {
  background: #eaf2f8;
  text-align: center;
  padding: 2rem;
}

button {
  background: #004aad;
  color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #002f6c;
}

section {
  padding: 2rem;
}

footer {
  text-align: center;
  background: #222;
  color: #fff;
  padding: 1rem;
  margin-top: 2rem;
}

/* Booking button (home page) */
.btn {
  background: #004aad;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Form page styles */
.form-section {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-section h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: #004aad;
}

label {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  min-height: 80px;
}

button.btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* ---- CALENDAR CUSTOMIZATION ---- */

/* Center the calendar */
.flatpickr-calendar {
  margin: 2rem auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 1000px !important;
  font-size: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Fix inner layout */
.flatpickr-calendar .dayContainer {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 5px !important;
  width: 100% !important;
}

/* Day cells */
.flatpickr-day {
  flex: none !important;
  width: 100% !important;
  height: 90px !important;
  line-height: 90px !important;
  font-size: 1.1rem !important;
  border-radius: 6px !important;
  text-align: center;
}

/* Today highlight */
.flatpickr-day.today {
  background: #004aad !important;
  color: white !important;
  font-weight: bold;
}

/* Selected day */
.flatpickr-day.selected {
  background: #003080 !important;
  color: white !important;
}

/* Disabled (past) days */
.flatpickr-day.flatpickr-disabled {
  background: #ddd !important;
  color: #888 !important;
  cursor: not-allowed;
}
