
.bmi-calc-container {
    width: 80vw;
    max-width: none;
}

.bmi-calc-container {
    max-width: 620px;
    padding: 25px 30px;
    border: 5px solid #add1f0;
    border-radius: 28px;
    background: #d8eff7;
}

.bmi-calc-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.bmi-calc-form input {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 25px !important;
}

.bmi-gender-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bmi-gender-label {
    margin-right: 6px;
    font-weight: 500;
}

.bmi-gender-group label {
    display: flex;
    align-items: center;
    margin: 0;
}

.bmi-gender-group input[type="radio"] {
    margin-right: 4px;
}

#bmi-submit {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #0073aa;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

#bmi-submit:hover {
    background: #005177;
}

.bmi-error {
    color: #a00;
    margin-bottom: 10px;
}

.bmi-result {
    text-align: center;
    margin-top: 15px;
}

.bmi-result img {
    max-width: 100%;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .bmi-calc-container {
        padding: 20px 16px;
    }
}

/* Novo: stilovi za pol */
.gender-group {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.gender-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
