/* CSS for _Layout.cshtml */
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 120, 212, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(0, 120, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 120, 212, 0);
    }
}

.nav-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0078d4; /* Windows blue color */
    box-shadow: 0 0 0 rgba(0, 120, 212, 0.4);
    animation: pulse-animation 2s infinite;
    vertical-align: middle;
    margin-right: 6px;
}