.booking-calendar {
  padding: 20px;
}

.booking-calendar h2 {
  font-size: 1.5rem;
  text-align: center;
}

.booking-calendar .book-btn {
  background: #08a7a7;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px !important;
  font-size: 18px !important;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px !important;
}

.month-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.month-nav button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: #edf8f7;
}

.weekdays,
.dates {
  /* display: grid;
  grid-template-columns: repeat(7, 1fr); */
  text-align: center;
  display: flex;
  gap: 55px;
  width: fit-content;
  margin: 0px auto;
}

.weekdays {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}
 
.weekdays span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.date-item {
  width: 50px;
  height: 50px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #edf8f7;
  color: #00a6a4;
}

.date-item.active {
  background: #00a6a4;
  color: #fff;
}

.date-item.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.selected-date {
  margin: 30px 0 20px;
  font-size: 22px;
}

.booking-calendar .month-nav button:hover,
.booking-calendar .month-nav button:focus {
  background: #00a6a4;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.month-nav button {
  color: #00a6a4;
}

.slot {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: #00a6a4;
  font-size: 0.9rem !important;
}
.slot:hover,
.slot:focus {
  background: #00a6a4;
  color: #fff !important;
}
.slot.active {
  border-color: #00a6a4;
  color: #00a6a4;
}

.book-btn {
  margin-top: 30px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: #00a6a4;
  color: #fff;
  cursor: pointer;
}

.time-slots {
  display: flex !important;
  flex-wrap: wrap !important;
}

.month-nav h3 {
  font-size: 1.25rem;
}

.notes {
  margin-top: 20px;
}

.notes p {
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 767px) {
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-calendar {
    padding: 20px;
  }
}
