/* Flash animation for live updates */
@keyframes flash-update {
    0% {
        background-color: rgba(255, 255, 255, 0.1);
    }

    100% {
        background-color: rgba(30, 30, 42, 0.4);
    }
}

.flash-update {
    animation: flash-update 0.5s ease-out;
}