body {
  background-color: #f9f9f9;
}

.navbar.bg-brown {
  background-color: #7B4B28; /* brownish */
}

.small-text {
  font-size: 0.7rem;
  color: #555;
}

#calendar {
  width: 100%;
  min-height: 600px; /* ensures visible area */
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}

.calendar-legend {
    font-size: 14px;
    font-weight: 500;
}

.legend-item {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    border-radius: 3px;
    vertical-align: middle;
}

.legend-item.booked {
    background-color: #28a745; /* 🟩 Green */
}

.legend-item.available {
    background-color: #dc3545; /* 🟥 Red */
}


.fc-col-header-cell {
  background: #f8f9fa;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #e0e0e0 !important;
}

.fc-col-header-cell-cushion {
  color: #4b4b4b !important;
  font-size: 0.85rem;
  pointer-events: none; /* removes link appearance */
}

.fc-day-sun .fc-col-header-cell-cushion,
.fc-day-sun .fc-daygrid-day-number {
  color: #b30000 !important;
}


.fc-day-today {
  background-color: #fff3cd !important; /* light yellow */
  border: 2px solid #ffc107 !important;
}


/* Breakfast = soft yellow border */
.meal-breakfast {
  border-left: 6px solid #ffc107 !important;
}

/* Lunch = soft blue border */
.meal-lunch {
  border-left: 6px solid #007bff !important;
}