/* Explain: App-specific component classes for animations and badges. - */
@keyframes emergency-glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(239, 68, 68, 0.5), inset 0 0 8px rgba(239, 68, 68, 0.2);
        border-color: rgba(239, 68, 68, 0.8);
    }
    50% {
        box-shadow: 0 0 12px rgba(59, 130, 246, 0.5), inset 0 0 8px rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.8);
    }
}

.emergency-badge {
    animation: emergency-glow 1.8s infinite ease-in-out;
}