/* PERCENTILES PAGE */

.mini-percentile-charts {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap:10px;
}

.mini-percentile-charts > div {
    display: flex;
    flex: 1 1 30%;  /* Each chart div takes up 1/3rd of the parent width */
    flex-wrap: wrap;
    flex-direction: row;
    min-width: 140px; 
    max-width: 33%;
    justify-content: flex-start;
    box-sizing: border-box; 
}