#macromeals-bmi-calculator {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
}

#macromeals-bmi-calculator form {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0px;
}

#macromeals-bmi-calculator .form-question {
    margin-bottom: 15px; /* Add more space below each question */
}

#macromeals-bmi-calculator input[type="number"] {
    font-size: 16px; /* Set font size to 16px to prevent mobile zoom */
    width: 100%;
    padding: 8px;
    height: 50px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.submit-button-container {
    display: flex;
    justify-content: center; /* Centers the button horizontally */
    margin-top: 20px; /* Optional: adds space above the button */
}

#macromeals-bmi-calculator button {
    background-color: #EB5A51;
    font-size: 18px;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: block; /* Ensures the button is a block element */
    margin: 20px auto 0; /* Centers the button horizontally */
}

#bmi-result, #bmi-message {
    margin-top: 20px;
    font-size: 16px;
}

#bmi-result {
    font-weight: bold;
}

#bmi-message {
    margin-top: 10px;
}

/* css for mobile */
@media (max-width: 768px) {
    #macromeals-bmi-calculator input[type="number"] {
        font-size: 14px;
        height: 40px;
    }

    #macromeals-bmi-calculator button {
        font-size: 16px;
        padding: 8px 16px;
    }
}
.form-help {
    margin-top: 20px;
    background-color: #F8F8F8;
    border-radius: 10px;
    border: solid 3px #EB5A51;
    padding: 30px 30px 20px;
}
.disc-title {
    font-weight: 500;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
}
.form-help-description {
    font-size: 16px; /* Example font size */
    text-align: center;
}