.bar-graph-wrapper {
    width: 100%;
    margin-top: 12px;
    padding: 8px 0 0 0;
}

.bar-graph-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 32px;
    height: 250px;
}

.bar-graph-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    max-width: 220px;
}

.bar-graph-bar-wrapper {
    width: 100%;
    max-width: 160px;
    height: 180px;
    display: flex;
    align-items: flex-end;
}

.bar-graph-bar {
    width: 100%;
    height: var(--bar-height);
    min-height: 16px;
    border-radius: 10px 10px 0 0;
}

.bar-graph-bar--initial {
    background: var(--warning-red);
}

.bar-graph-bar--new {
    background: var(--dark-green);
}

.bar-graph-title {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: var(--dark-green);
}

.bar-graph-value {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: var(--dark-green);
}
