#chartContainerAC {
    width: 100%;
    height: 350px;
}

#barTooltipAC {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    display: none;
    pointer-events: none;
    font-size: 12px;
    z-index: 9999;
}

.graph-container {
    position: relative;
    /* Needed for positioning tooltip inside */
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
}