/* Contenedor general del calendario */



#calendar {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.fc-toolbar-title::first-letter {
    text-transform: uppercase;
}

/* Header (mes, flechas) */
.fc-header-toolbar {
    margin-bottom: 16px;
}

.fc-toolbar-title {
    font-size: 1.4rem;
    font-weight: bold;
}

/* Botones prev / next */
.fc-button {
    border-radius: 12px !important;
    border: none !important;
    background: var(--primary-bg-color) !important;
    color: black !important;
}

.fc-button:hover {
    background: #e5e7eb !important;
}

/* Botones deshabilitados */
.fc-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Cuadrícula del calendario */
.fc-daygrid-day {
    border-radius: 10px;
}

/* Días */
.fc-daygrid-day-frame {
    border-radius: 10px;
    transition: background 0.2s;
}

/* Hover solo visual (no drag) */
.fc-daygrid-day-frame:hover {
    background: #f9fafb;
}


/* Día actual */
.fc-day-today {
    background: #ecfdf5 !important;
    border-radius: 12px;
}

/* Eventos */
.fc-event {
    border-radius: 10px !important;
    padding: 4px 6px;
    font-size: 0.85rem;
    border: none !important;
}

/* Texto del evento */
.fc-event-title {
    font-weight: 500;
}

/* Fechas deshabilitadas (pasadas) */
.fc-day-disabled,
.fc-day-past {
    background: #f3f4f6;
    opacity: 0.5;
}

/* Quitar cursor de drag */
.fc-event,
.fc-event * {
    cursor: pointer !important;
}
