/* ============================================
   CHARTS.CSS — Styling untuk Chart.js wrapper
   ============================================ */

.chart-container {
  position: relative;
  height: 200px;
  margin: 17px 0;
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  padding: 17px;
  box-shadow: var(--shadow-hard);
}
.chart-container canvas {
  width: 100% !important;
  height: 100% !important;
}

.chart-small {
  height: 150px;
}

.chart-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.stat-number .currency {
  font-size: 1.2rem;
  margin-right: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.streak-display {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
}
.streak-display .fire {
  font-size: 2.8rem;
}
