/* ============================================================
   components/status.css
   Operational status system
   ============================================================ */

.plx-status-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--plx-radius-pill);
  flex-shrink: 0;
}

.plx-status-green {
  background: var(--plx-status-green);
  box-shadow: 0 0 10px var(--plx-status-green), 0 0 20px rgba(34, 197, 94, 0.4);
}

.plx-status-amber {
  background: var(--plx-status-amber);
  box-shadow: 0 0 10px var(--plx-status-amber), 0 0 20px rgba(245, 158, 11, 0.4);
}

.plx-status-red {
  background: var(--plx-status-red);
  box-shadow: 0 0 10px var(--plx-status-red), 0 0 20px rgba(239, 68, 68, 0.4);
}

.plx-status-blue {
  background: var(--plx-status-blue);
  box-shadow: 0 0 10px var(--plx-status-blue), 0 0 20px rgba(var(--plx-brand-primary-raw), 0.4);
}