.gauge_wrapper {
    display: flex;
    border: solid 0px black;
    /*background-color: #FFFFFF;*/
    justify-content: center; 
    height: 100%;
    /*top: 0;
    right: 0;
    left: 0;*/
}

.gauge_container {
    border: solid 0px red;
    width: 240px;
    display: flex;
    flex-direction: column-reverse;
    /*justify-content: space-between;*/
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.gauge_box {
    height: 20%;
    min-height: 180px;
    width: 100%;
    min-width: 240px;
    text-align: center;
    background-color: #FFFFFF;
    border: 1px solid #0f2269; 
    border-radius: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.gauge_header {
    font-weight: bold;
    color: #0f2269;
}

.gauge_sub_header {
    font-weight: normal;
    font-size: 0.8em;
    height: 10px;
}

.gauge {
    margin-top: 1.0em;
}

