#canvasContainer {
    width: 290px;
    height: 200px;
    padding: 0 10px 0 0;
    box-sizing: border-box;
    /* border: 1px solid rgb(255, 255, 255);
    border-radius: 10px; */
    background: linear-gradient(to right, rgba(0, 157, 255, 0.459) 0px, transparent 0%);
    position: relative;
}

#movingBar {
    width: 3px;
    height: 100%;
    /* background-color: red; */
    background-color: rgb(255, 166, 0);
    position: absolute;
    top: 0;
    left: 0px;
    transition: left 1s;
}

#myChart {
    /* position: relative; */
    border: none;
    overflow: visible;
}

#timeLabel {
    width: 45px;
    background-color: rgb(255, 166, 0);
    /* border: 1px solid black; */
    border-radius: 5px;
    padding: 2px 5px 0px 5px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Arial';
    transform: translate(-50%, 90px);
    white-space: nowrap;
    color: #ffffff;
}