/* Tailwind override for FullCalendar buttons */
.fc .fc-button
{
    @apply
    bg-sky-700
    border-sky-700
    text-white
    text-xs
    font-medium
    px-3 py-1
    rounded-md
    hover:bg-sky-800
    transition-colors
    duration-200;
}

.fc .fc-button:hover {
    @apply
    bg-sky-900
    border-sky-900;
}

.fc .fc-button-group .fc-button.fc-button-active {
    @apply
    bg-sky-900
    border-sky-900;
}
