.chart-wrapper {
    width: 100%;
    height: 25vh;
    position: fixed;
    bottom: 0;

}
.chart {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.chart-bar{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 0%;
    overflow: hidden;
    margin: 0 2px 0 2px;
    transition: .4s ease;
    border-radius: 5px 5px 0 0 ;
    text-decoration: none;
}

.chart-bar:hover{
    cursor: pointer;
    background-color: green!important;
    height: 100%!important;

}


.caption {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}


.table {
    font-size: 1.25rem!important;
}

td, th {
    padding: 0.75rem!important;
}