/* health/health.css */

body {
    font-family: 'Poppins', sans-serif;
}

.input-style {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    outline: none;
    background: #fafafa;
}

.input-style:focus {
    border-color: #FE9927;
    background: #fff;
}

.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 10px solid #FE9927;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    color: #0F172A;
}

.bar {
    height: 14px;
    background: #eee;
    border-radius: 30px;
    overflow: hidden;
}

.fill {
    height: 100%;
    width: 0%;
    background: #FE9927;
    transition: 1.2s ease;
}

select:invalid {
    color: #9ca3af;
}