.booking-calendar {
  max-width: 350px;
  /* margin: 0 auto; */
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
}

.spinner-container{
  display:flex;
  justify-content: center;
}

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

.calendar-header h3{
  margin: 1em 0 1em 0;
}

.days-of-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: bold;
  margin-bottom: 10px;
}

.day-of-week {
  text-align: center;
}

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

.day {
  position: relative;
  text-align: center;
  padding: 5px;
  cursor: pointer;
}

.current-day {
  font-weight: bold;
}

.past-day, .future-day {
  color: #ccc; /* Lighter grey color for past days */
  cursor: not-allowed; /* Change cursor for past days */
}

.dot {
  position: absolute;
  bottom: -8px; /* Adjust this value to position the dot properly */
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2ecc71; /* Dot color */
  display: none;
}

.day.available .dot {
  display: block;
}

.day.selected {
  background-color: #3498db;
  color: #fff;
  font-weight: bold;
  border-radius: 50%; /* Add circular border radius */
}

.day.booked {
  background-color: #e74c3c;
  color: #fff;
  font-weight: bold;
}

.selected-date {
  margin-top: 15px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.selected-date p {
  font-weight: bold;
  margin-bottom: 10px;
}

div.time-slots{
  max-height: 330px;
  overflow-y: scroll;
}

div.time-slots ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

div.time-slots li {
  cursor: pointer;
  padding: 5px;
  border: 1px solid #8E919F;
  border-radius: 0.25rem;
}

div.time-slots li.selected {
  background-color: #3498db;
  color: #fff;
  font-weight: bold;
  border-color: #3498db;
}

/* .selected-date button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #3498db;
  color: #fff;
  border: none;
  cursor: pointer;
}

.selected-date button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
} */
