/* Section: Holder Bar
   Total holders + 24h/7d/30d/90d deltas. Owned by
   shared/dashboard/sections/holder_bar/. */

.section--holder-bar {
  margin-bottom: 1.5rem;
}

.holder-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}

.holder-primary {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.holder-primary-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.holder-primary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.holder-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.holder-changes {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.holder-change-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.4rem 0.6rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 60px;
  text-align: center;
}

.holder-change-period {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.holder-change-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.holder-change-value.positive {
  color: #22c55e;
}

.holder-change-value.negative {
  color: #ef4444;
}
