/**handles:fajne-bmi-style**/
#bmi-container {
    width: 100%;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    background: #1e1e1e;
    color: #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.bmi-description {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

#bmi-form select, #bmi-form input, #bmi-form button {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2b2b2b;
    color: #ddd;
}

#bmi-form button {
    width: 40%;
    display: block;
    margin: 15px auto 0;
    background: #3b6db0;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

#bmi-form button:hover {
    background: #2a507d;
}

#bmi-chart-container {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #292929;
    border-radius: 8px;
    text-align: center;
}

canvas {
    max-height: 120px;
}