/**
 * CEO Dashboard — Styles
 */

/* Pipeline bar */
.dash-pipeline {
  display: flex;
  height: 16px;
  border-radius: var(--radius-full);
  overflow: hidden;
  gap: 2px;
  margin-bottom: var(--space-md);
}
.dash-pipe-seg {
  min-width: 4px;
  border-radius: var(--radius-full);
  transition: flex 0.3s ease;
}
.dash-pipe-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.dash-pipe-label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.dash-pipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
