#article_bmi_calculator {
    display: grid;
    justify-content: center;
}

.form_label {
    margin-bottom: 5px;
    margin-top: 20px;
    display: block;
}

#gender_input_container {
    padding-left: 10px;
    font-size: 16px;
}

#gender_input_container input {
    width: min-content;
}

#gender_input_container label {
    margin-right: 20px;
}

.height_feet_and_inches_block {
    display: none;
}

.age_years_and_months_block {
    display: none;
}

#height_feet_input, 
#height_inches_input,
#age_years_input, 
#age_months_input {
    width: 40%;
}

#result {
    display: none;
    justify-items: center;
}

#bmi{
    margin-top: 20px;
    color: var(--my-font-color);
    font-size: 16px;
}

#bmi_interpretation_comment {
    font-size: 36px;
    color: var(--my-font-color);
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
}

#bmi_interpretation_canvas {
    margin-top: 10px;
}


.result_core {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
}

.reference {
    margin-top: 10px;
}