
#chartContainer {
    display: block;
    clear: both;
    padding: 10px 0;
    width: 100%;
}

#chartContainer .info-row {
    display: flex;
    justify-content: space-between;  /* pushes columns to the extremes */
    margin-bottom: 10px; /* add space between this and chart */
    background: var(--background-white);
    border: solid 1px var(--border-grey);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    color: var(--background-black);
}

#chartContainer .left-column, .right-column {
    display: flex;
    flex-direction: column;
}

#chartContainer .left-column {
padding-left: 10px;
}

#chartContainer .right-column {
    padding-right: 10px
}



#chartContainer .name, .dateTime, .location {
    margin: 0;  /* remove any default margin */
}

#chartContainer .name {
    font-size: 24px;
    font-weight: 800;
    text-align: left;
    line-height: 1.2em;
}

#chartContainer .location {
    font-size: 16px;
    font-weight: 100;
    text-align: left;
}

#chartContainer .dateTime {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    display: flex;
    flex-direction: column;

}


.datePart {
    font-weight: bold;
}

.timePart {
    color: gray;
    text-align: right;
}


@media screen and (min-width: 768px) {
    #chartContainer {
        display: block;
        clear: both;
        padding: 10px 0;
        width: 50%;
        position: fixed;
        height: 100vh;
        top: 47px;
    }
    }

