/**
 * FullCalendar 6.1.20 - Base Styles
 *
 * Note: FullCalendar 6.x uses CSS-in-JS - styles are injected automatically.
 * This file provides minimal supplementary styles for WordPress integration.
 *
 * @see https://fullcalendar.io/docs/initialize-globals
 */

/* Calendar container base styles */
.fc {
  font-family: inherit;
}

/* Ensure proper z-index for popups */
.fc-popover {
  z-index: 1000;
}

/* Event pointer cursor */
.fc-event {
  cursor: pointer;
}

/* Loading spinner support */
.fc-loading {
  opacity: 0.5;
  pointer-events: none;
}

/* RTL support if needed */
.fc-direction-rtl {
  direction: rtl;
}

/* Print styles */
@media print {
  .fc {
    page-break-inside: avoid;
  }

  .fc-toolbar {
    display: none !important;
  }
}
