/* Renamed `pulse` → `sessions-pulse` to avoid collision with DashboardEditor.css */
.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
}

.status-dot.bg-success {
    background-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background-color: #28a745;
    animation: sessions-pulse 2s infinite;
}

.status-indicator.offline {
    background-color: #6c757d;
}

@keyframes sessions-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    70%  { box-shadow: 0 0 0 6px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

@keyframes sessions-pulse-alarm {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}
