/* Hover magenta for day buttons on the Upload page only */
.day-toggle .btn:hover {
  background-color: #ff4366 !important; /* PALETTE_MAGENTA */
  border-color: #ff4366 !important;
  color: #fff !important;
}

/* Date picker selection - blue background, keep text color */
.CalendarDay__selected,
.CalendarDay__selected_span {
  background-color: #0d6efd !important; /* Bootstrap primary blue */
  border-color: #0d6efd !important;
  /* Text color remains unchanged - not overriding color property */
}

.CalendarDay__selected:hover,
.CalendarDay__selected_span:hover {
  background-color: #0b5ed7 !important; /* Slightly darker blue on hover */
  border-color: #0b5ed7 !important;
  /* Text color remains unchanged - not overriding color property */
}
