/* basically everything here is entirely optional and used for testing only (although I would recommend keeping the padding in some form) */


.chart-container {
    max-width: 1500px;
}

/* hero number size and font can be changed to some format that matches the rest of the site*/
.hero-number {
    font-size: 50px;
    margin-bottom: 0px;
    
}
.redcap-data-container {
    text-align: center;
}
.labeled-img-container { 
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}
.redcap-data-column td{
    width: 800px;
    padding-left: 50px;
    padding-right: 50px;
}

/*donut may need some rethinking if put in a flexbox*/
.donut-container {
    position: relative;
    display: inline-block;
}
.donut {
    width: 200px;
    display: block;
}
.donut-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: normal;
}

.horizontal-bar {
    height: 200px;
}

.vertical-bar {
    height: 300px;
    width: 200px;
}

canvas{
    width: 400px;
}