
#rdCalender {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.rd-disable {
  pointer-events: none;
}

.rd-month {
  width: 300px;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.rd-calendar-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.rd-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 0;
  row-gap: 6px;
  padding: 0.25rem 0;
}

.rd-day-cell {
  height: 38px;
  width: 38px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background-color 0.15s ease;
}

  .rd-day-cell.filler {
      background: transparent;
      border: none;
      cursor: default;
  }

  .rd-day-cell.range-start {
      border-top-left-radius: 6px !important;
      border-bottom-left-radius: 6px !important;
      border-top-right-radius: 0px !important;
      border-bottom-right-radius: 0px !important;
  }

  .rd-day-cell.range-end {
      border-top-right-radius: 6px !important;
      border-bottom-right-radius: 6px !important;
      border-top-left-radius: 0px !important;
      border-bottom-left-radius: 0px !important;
  }

  .rd-day-cell.range-mid {
      border-radius: 0 !important;
  }

  .rd-day-cell.range,
  .rd-day-cell.range-start,
  .rd-day-cell.range-end,
  .rd-day-cell.range-mid {
      margin: 0;
  }

  .rd-day-cell.range,
  .rd-day-cell.range-start,
  .rd-day-cell.range-end,
  .rd-day-cell.range-mid {
      height: 38px;
      width: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      background-color: #0d6efd;
      color: #fff;
  }

  .rd-day-cell.range.is-invalid {
      background-color: #dc354641;
      color: #dc3545;
      font-weight: bold;
  }

  .rd-day-cell.blocked-booking {
      background-color: #dee2e6;
      color: #adb5bd;
      cursor: not-allowed;
  }

  .rd-day-cell.blocked-service {
      background-color: #212529;
      color: #fff;
      cursor: not-allowed;
  }

  .rd-day-cell.disabled,
  .rd-day-cell.blocked-out-of-range {
      opacity: 0.3;
      cursor: not-allowed;
  }

  .rd-day-cell:hover:not(.blocked-booking):not(.blocked-service):not(.disabled):not(.range):not(.start):not(.blocked-out-of-range):not(.filler) {
      background-color: #e9ecef;
  }

  .rd-day-cell.start {
      font-weight: bold;
  }

  .rd-day-cell svg {
      margin-left: 0.2rem;
      vertical-align: middle;
  }

.rd-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.rd-day-cell.range-single {
  border-radius: 6px !important;
}

.rd-day-cell.blocked-booking {
  border-radius: 0px !important;
}

.rd-day-cell.blocked-single {
  border-radius: 6px !important;
}

.rd-day-cell.blocked-start {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.rd-day-cell.blocked-end {
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
