/* Remove borders from selected dates in datepicker */
.rdp-button_selected,
.rdp-day_selected {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Make sure the selected date has the right background color */
.rdp-day_selected {
  background-color: #009ce5 !important;
  color: white !important;
}

/* Hover state for selected dates */
.rdp-day_selected:hover {
  background-color: #0082be !important;
  color: white !important;
}
