.chart {
  align-items: stretch;
  justify-content: start;
  padding-top: 24px;
}

.bar-column {
  align-items: end;
  display: grid;
  gap: 7px;
  grid-template-rows: 1fr auto auto;
  height: 100%;
  text-align: left;
}

.bar-column .bar {
  width: 100%;
}
.bar.stack {
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  background: #d8dbe3;
}
.bar.stack i {
  display: block;
  width: 100%;
  min-height: 0;
}
.bar.stack .bielik {
  background: #ff5c35;
}
.bar.stack .qwen {
  background: #7657ff;
}
.bar.stack .hybrid {
  background: #18a999;
}
.chart-legend {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}
.chart-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.chart-legend .bielik {
  background: #ff5c35;
}
.chart-legend .qwen {
  background: #7657ff;
}
.chart-legend .hybrid {
  background: #18a999;
}
.bar-column strong {
  font:
    800 13px/1 ui-monospace,
    monospace;
}
.bar-column span {
  color: var(--muted);
  font:
    12px/1.2 ui-monospace,
    monospace;
  padding-bottom: 10px;
}

@media (max-width: 760px) {
  .chart {
    gap: 8px;
    overflow-x: auto;
  }
}
