/* Custom style for 'no events for today' message to match calendar background, round corners, and hover like event */
.event-list > .event-empty {
    background-color: #fbfbfb !important; /* Fondo igual al calendario */
    border: 1px solid #fbfbfb !important;
    border-radius: 10px !important; /* Esquinas redondeadas como los eventos */
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}
.event-list > .event-empty > p {
    color: #302a4c !important; /* Texto violeta oscuro cuando no hay hover */
    transition: color 0.3s;
}
.event-list > .event-empty:hover {
    background-color: #302a4c !important; /* Violeta oscuro como evento activo */
}
.event-list > .event-empty:hover > p {
    color: #fff0b9 !important; /* Color texto igual a evento activo */
}
