/* css/components/pulse.css */
.pulse-container {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--border);
  margin-bottom: var(--s-5);
}

.pulse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-3);
}

.pulse-legend {
  display: flex;
  gap: var(--s-4);
}

.pulse-legend__item {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  font-size: 11px;
  color: var(--text-2);
  font-weight: 500;
}

.pulse-legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pulse-svg { width: 100%; overflow: visible; }

.pulse-fallback {
  min-height: 80px;
  display: flex;
  align-items: center;
  color: var(--text-2);
  font-size: 13px;
}
