/* ============================================================
   dashboard.css — Dashboard-specific accents
   Most component styles live in components.css. This file only
   adds things that are unique to dashboard panels.
   ============================================================ */

/* ── Live indicator ─────────────────────────────────────────── */
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-shadow), 0 0 4px var(--green);
  flex-shrink: 0;
  position: relative;
  animation: dot-pulse 2s var(--ease-in-out) infinite;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green);
  opacity: 0.35;
  animation: pulse-ring 2.6s var(--ease-out) infinite;
}

/* ── WebRTC detail panel ────────────────────────────────────── */
.webrtc-ip-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-3);
}

/* ── Fingerprint rows (dashboard-specific layout) ───────────── */
.fp-row {
  display: flex;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  gap: var(--space-3);
  font-size: var(--text-sm);
  align-items: baseline;
}

.fp-row:last-child { border-bottom: none; }

.fp-key {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text3);
  min-width: 140px;
  flex-shrink: 0;
}
.fp-val {
  font-family: var(--font-mono);
  color: var(--text);
  word-break: break-all;
  flex: 1;
}
.fp-badge { flex-shrink: 0; }
