.calendar-week-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal-day {
  border: 1px solid #eee;
  padding: 12px 8px;
  text-align: center;
  border-radius: 6px;
}
.cal-day.empty {
  background: transparent;
  border: none;
}
.cal-day.booked {
  background: #ffe8e8;
  color: #d33;
}
.cal-day.available {
  background: #e8f5e8;
  color: #2a882a;
}
.price {
  font-size: 14px;
  margin-top: 4px;
  font-weight: 500;
}
.date {
  font-size: 16px;
  font-weight: 500;
}
.status {
  margin: 4px 0;
}
