.bmi-wrapper {
    /*padding: 20px;*/
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bmi-height-row {
    display: flex;
    gap: 10px;
}

.bmi-wrapper input,
.bmi-btn {
    width: 100%;
    box-sizing: border-box;
}

.bmi-result-wrapper {
    text-align: center;
    /*margin-top: 15px;*/
}

.bmi-card {
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.bmi-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.bmi-score {
    font-size: 42px;
    font-weight: 700;
    margin: 6px 0;
}

.bmi-category {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #999;
}

.bmi-range {
    font-size: 14px;
    color: #666;
}

/* Progress bar */
.bmi-result-wrapper .bmi-progress {
    width: 100%;
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.bmi-result-wrapper .bmi-progress-fill {
    width: 0%;
    height: 100%;
    background-color: #2ecc71;
    border-radius: 10px;
    transition: width 0.8s ease;
}
