
.graph-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: center;
}

.graph {
    width: 50%;
}

.radar {
    width: 100%;
}

.graph, .chart {
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.graph canvas {
    max-height: 512px;
}

.chart canvas {
    width: 100% !important;
    height: 100% !important;
}

.chart-label {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* xs screen */
@media only screen and (max-width: 768px) {
    .graph {
        width: 100%;
    }
}