#booking-calendar {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.abc-month {
  width: 100%;
}
@media (min-width: 992px) {
  .abc-month {
    width: calc(50% - 14px);
  }
}
.abc-month-label {
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  background: #f0f0f0;
}
.abc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.abc-day-name, .abc-day, .abc-outside {
  border: 1px solid #ddd;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
}
.abc-day {
  cursor: pointer;
  position: relative;
}
.abc-day.abc-reserved {
  background: #fdd;
  cursor: not-allowed;
}
.abc-day.abc-selected,
.abc-day.abc-range {
  background: #cfc;
}
.abc-outside {
  opacity: 0.4;
  pointer-events: none;
}
.abc-date {
  display: block;
  font-size: 14px;
}
.abc-price {
  font-size: 12px;
  color: #444;
}
#abc-calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#abc-calendar-nav button {
  padding: 5px 10px;
}
