.chart-container {
    left: 0;
    width: 100%;    
}

#chart {
    display: flex;
    align-items: flex-end;
    height: 120px;
    width: 100%;
    gap: 1px;
}

.bar {
    flex-grow: 1;
    min-width: 1px;
    position: relative;
    cursor: pointer;
}

/* Tooltip */
#tooltip {
    position: fixed;
    pointer-events: none;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    display: none;
    z-index: 2000;
}
