.bar-chart {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.bar-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 4px;
}
.bar {
  width: 24px;
  border-radius: 6px 6px 0 0;
  min-height: 4px;
}
.bar-label {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}
.bar-chart-wrapper {
  width: 100%;
}
.chart-title {
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
} 