/* Base button styling for FullCalendar nav buttons */
.fc .fc-button-primary,
.fc .fc-button-secondary,
.fc .fc-prev-button,
.fc .fc-next-button,
.fc .fc-today-button {
  background-color: #1A73E8 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 600;
  border-radius: 4px;
  padding: 6px 12px;
}

/* Optional: Hover effect for nav buttons */
.fc .fc-button-primary:hover,
.fc .fc-button-secondary:hover,
.fc .fc-prev-button:hover,
.fc .fc-next-button:hover,
.fc .fc-today-button:hover {
  background-color: #1669C1 !important;
  color: #ffffff !important;
}

/* Make active button stand out */
.fc .fc-button-active {
  box-shadow: 0 0 0 2px #1A73E8 inset;
}
