.incident-status-indicator {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: #2b394a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.incident-status-indicator:hover,
.incident-status-indicator:focus {
    background: #2b394a;
    color: #fff;
    outline: none;
}

.incident-status-indicator .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.8);
    animation: incidentPulse 1.8s infinite;
}

@keyframes incidentPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.8);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@media screen and (max-width: 767px) {
    .incident-status-indicator {
        bottom: 70px;
    }

    .incident-status-indicator.login-page {
        bottom: 20px;
    }
}
