﻿namespace BigIronRail.Blazor.wwwroot.css
/* Default bell color */
.bell-icon {
    color: yellow !important; /* Blue when no action */
    padding: 20px !important;
    transition: color 0.3s ease !important;
}

/* Flash animation when active */
    @keyframes flash-red {
        0%, 100% {
            color: red !important;
        }

        50% {
            color: yellow !important;
        }
    }

    /* Apply flashing effect when active */
.bell-icon.active {
    animation: flash-red 1s infinite !important;
    ;
}



