@layer components {
    .activity-flash {
        animation: flash-bg 2s ease-out;
    }

    @keyframes flash-bg {
        0% {
            background-color: var(--color-primary);
            opacity: 0.3;
        }
        100% {
            background-color: transparent;
            opacity: 1;
        }
    }
}
