.chart {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  max-width: 100px;
  height: 300px;
}

.bar {
  width: 80%;
  border-radius: 4px 4px 0 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bar-value {
  position: absolute;
  bottom: 100%;
  font-size: 0.8em;
  margin-bottom: 6px;
  white-space: nowrap;
}

.bar-label {
  margin-top: 8px;
  font-weight: bold;
}
