/* animations.css
 * Phase 2: Shared keyframes & animation helpers
 */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Placeholder keyframes for upcoming phases */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes toast-progress {
    from {
        width: 100%;
    }

    to {
        width: 0;
    }
}

.anim-spin {
    animation: spin 1s linear infinite;
}

.anim-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}