.bar-chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 220px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bar {
  width: 60px;
  border-radius: 8px;
  transition: height 0.4s ease;
}

.bar-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
