.chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 300px;
  padding: 10px 20px 40px 20px;
  position: relative;
}

.bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.bar-value {
  margin-bottom: 4px;
}

.bar-wrapper {
  height: 200px;
  display: flex;
  align-items: flex-end;
}

.bar {
  width: 150px;
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.bar-label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: bold;
}
