/* ============================================================
   CALENDAR.CSS — Visual Booking Grid (Neon Dark)
   ============================================================ */

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cal-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cal-day-label {
  padding: 15px;
  background: var(--glass);
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.cal-day {
  min-height: 120px;
  padding: 10px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.cal-day:nth-child(7n) { border-right: none; }

.cal-day.today {
  background: rgba(139, 92, 246, 0.05);
}

.cal-day.today .day-num {
  color: var(--primary);
  font-weight: 800;
}

.day-num {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.cal-booking-pill {
  font-size: 10px;
  padding: 4px 8px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.cal-booking-pill.checked-in { background: var(--accent); }
.cal-booking-pill.cancelled { background: var(--text-muted); text-decoration: line-through; }
