/* animations.css — Animaciones globales */

.due-today {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 101, 132, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 101, 132, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 101, 132, 0); }
}
