@font-face {
    font-family: "Read";
    src: url("/fonts/Read.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lexie Readable";
    src: url("/fonts/LexieReadable-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OpenDyslexic";
    src: url("/fonts/OpenDyslexic-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* CONTENEDOR GENERAL */
#calendar {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

/* VARIABLES BASE DE FULLCALENDAR */
:root {
    --fc-border-color: #e5e7eb;
    --fc-button-bg-color: #6f7c51;
    --fc-button-border-color: #6f7c51;
    --fc-button-hover-bg-color: #a2ba74;
    --fc-button-hover-border-color: #a2ba74;
    --fc-button-active-bg-color: #a2ba74;
    --fc-button-active-border-color: #a2ba74;
    --fc-today-bg-color: #e7e1d3;
    --fc-button-text-color: #e7e1d3;
}

/* CABECERA SUPERIOR */
.fc .fc-toolbar {
    margin-bottom: 1.5rem;
}

.fc .fc-toolbar-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    font-family: 'Lexie Readable', sans-serif;
}

/* BOTONES */
.fc .fc-button {
    border-radius: 8px !important;
    padding: 0.45rem 0.9rem !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    color: #ead499;
    box-shadow: none !important;
}

.fc .fc-button:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.20) !important;
}

/* DÍAS DE LA SEMANA */
.fc .fc-col-header-cell {
    background-color: #f8fafc;
}

.fc .fc-col-header-cell-cushion {
    padding: 12px 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #da6151;
    text-decoration: none;
}

/* CELDAS DEL MES */
.fc .fc-daygrid-day {
    background-color: #ffffff;
    transition: background-color 0.2s ease;
}

.fc .fc-daygrid-day:hover {
    background-color: #f9fafb;
}

.fc .fc-daygrid-day-frame {
    min-height: 110px;
}

/* NÚMERO DEL DÍA */
.fc .fc-daygrid-day-number {
    padding: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
}

/* DÍAS FUERA DEL MES */
.fc .fc-day-other .fc-daygrid-day-number {
    color: #c0c4cc;
}

/* DÍA ACTUAL */
.fc .fc-day-today {
    background-color: #e7e1d3 !important;
}

.fc .fc-day-today .fc-daygrid-day-number {
    color: #000;
    font-weight: 700;
}

/* EVENTOS */
.fc .fc-daygrid-event {
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.85rem;
    border: none;
}

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