 /* =========================
      FULLCALENDAR BUTTONS
      ========================= */

      .fc .fc-button {
        background-color: #4c73e9;
        border: none;
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        transition: all 0.2s ease;
      }

      .fc .fc-button:hover {
        background-color: #ee4138;
      }

      .fc .fc-button-active {
        background-color: #ee4138;
      }

      .fc .fc-button-primary:not(:disabled).fc-button-active,
      .fc .fc-button-primary:not(:disabled):active {
        background-color: #ee4138;
        border-color: #ee4138;
        color: var(--fc-button-text-color);
      }

      /* =========================
      EVENT CARDS
      ========================= */

      .fc-daygrid-event {
        white-space: normal !important;
        background: white;
        border: 1px solid #e5e7eb;
        border-left: 4px solid #4c73e9;
        border-radius: 8px;
        padding: 6px 8px;
        margin-bottom: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
      }
      .fc-daygrid-event-dot {
        display: none;
      }

      /* Hover effect */

      .fc-daygrid-event:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        cursor: pointer;
      }

      /* =========================
      EVENT TEXT
      ========================= */

      .fc-daygrid-event .fc-event-time {
        font-size: 11px;
        color: #6b7280;
        font-weight: 600;
      }

      .fc-daygrid-event .fc-event-title {
        font-size: 12px;
        font-weight: 600;
        color: #111827;
      }

      /* =========================
      CALENDAR HEADER
      ========================= */

      .fc-toolbar-title {
        font-weight: 600;
      }

      /* =========================
      DAY CELL EVENTS SPACING
      ========================= */

      .fc-daygrid-event-harness {
        margin-bottom: 4px;
      }

      /* =========================
      WEEK / DAY EVENT CARDS
      ========================= */

      .fc-timegrid-event {
        background: white;
        border: 1px solid #e5e7eb;
        border-left: 4px solid #4c73e9;
        border-radius: 8px;
        padding: 4px 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
      }
      .event-type-1 {
        border-left-color: #4c73e9 !important;
      }

      .event-type-2 {
        border-left-color: #4c73e9 !important;
      }

      .event-type-3 {
        border-left-color: #6b7280 !important;
      }

      .fc-timegrid-event:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        cursor: pointer;
      }

      /* Hora */

      .fc-timegrid-event .fc-event-time {
        font-size: 11px;
        font-weight: 600;
        color: #6b7280;
      }

      /* Título */

      .fc-timegrid-event .fc-event-title {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.3;
        color: #111827;
      }

      .fc-event-host {
        font-size: 11px;
        color: #6b7280;
        font-style: italic;
      }