/* Makes pandas df tables spaced out and not have text ontop of each other*/
.dataframe {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 1em;
}
