.booking-calendar-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100%;
  font-family: Arial;
}

.booking-month {
  min-width: 100%;
  scroll-snap-align: start;
  padding: 40px;
}

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

.booking-btn {
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.booking-day {
  border: 1px solid #000;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  transition: 0.2s;
}

.booking-day:hover {
  background: #d9d9d9;
}

.booking-header-day {
  background: #007bff;
  color: #ffd700;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.booking-empty {
  background: transparent !important;
  border: none !important;
}

.booking-date {
  font-weight: bold;
}

.booking-time {
  font-size: 13px;
  text-align: center;
}
