.chart-wrapper * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.chart-wrapper {
    font-family: sans-serif;
    max-width: 90%;
    padding: 10px;
    margin: 20px auto;
    border: 2px solid purple;
    --height: 500px;
    overflow-x: auto;
    display: none;
}

.chart-wrapper a {
    text-decoration: none;
    color: inherit;
}

.chart-wrapper ul {
    list-style: none;
}

/* Values */
.chart-wrapper .chart-values {
    position: relative;
    display: flex;
    margin-bottom: 10px;
    padding: 0;
    font-weight: bold;
    font-size: 1rem;
}

/* Columns */
.chart-wrapper .chart-values li {
    flex: 1;
    min-width: 60px;
    text-align: left;
}

.chart-wrapper .chart-values li:not(:last-child) {
    position: relative;
}

.chart-wrapper .chart-values li:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 1px solid lightgrey;
    height: var(--height);
}

/* Bars */
.chart-wrapper .chart-bars li {
    background-color: palevioletred;
    position: relative;
    color: black;
    margin-bottom: 15px;
    font-size: 0.8rem;
    border-radius: 14px;
    padding: 5px 10px;
    width: 0;
}

.chart-wrapper .chart-bars li[data-duration="Unofficial"] {
    background-color: palegreen;
}