/* charts.css — chart styles */

.chart-card .card-body.chart-body {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;
}

.chart-legend {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-label { color: var(--tx2); flex: 1; }

.legend-value {
  font-family: var(--mo);
  font-weight: 600;
  color: var(--tx);
  font-size: 13px;
}

.legend-pct {
  font-family: var(--mo);
  font-size: 11px;
  color: var(--tx3);
  min-width: 36px;
  text-align: right;
}
