/* =====================================================
   CALENDARIO
===================================================== */

#rb-calendar {
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Título */
.fc-toolbar-title {
    color: #1f2a44 !important;
    font-weight: 700 !important;
}

/* Botones */
.fc .fc-button-primary {
    background: #1f2a44 !important;
    border-color: #1f2a44 !important;
}

.fc .fc-button-primary:hover {
    background: #ea8354 !important;
    border-color: #ea8354 !important;
}

/* Eventos */
.fc .fc-event {
    background: #ea8354 !important;
    border: none !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 2px 4px !important;
}

/* Encabezado de días */
.fc-col-header-cell {
    background: #1f2a44;
}

.fc-col-header-cell-cushion {
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Día actual */
.fc .fc-day-today {
    background: rgba(234,131,84,.12) !important;
}

/* Hover */
.fc-daygrid-day:hover {
    background: rgba(31,42,68,.05);
}