.findrisc-calculator-wrapper {
    max-width: 750px;
    margin: 20px auto;
    font-family: inherit;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    box-sizing: border-box;
}

.findrisc-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.findrisc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.findrisc-group {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.findrisc-group > label {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.findrisc-group span {
    cursor: help;
    color: #888;
    font-weight: normal;
}

.findrisc-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.findrisc-options label {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.findrisc-options input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.findrisc-group input[type="number"],
.findrisc-group select {
    width: 100%;
    max-width: 300px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.findrisc-bmi-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.findrisc-bmi-inputs input {
    max-width: 150px !important;
}

.findrisc-group input[type="number"]:focus,
.findrisc-group select:focus {
    border-color: #0088cc;
    outline: none;
}

.findrisc-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.findrisc-btn-submit {
    flex: 2;
    padding: 15px 20px;
    background-color: #0088cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.findrisc-btn-submit:hover {
    background-color: #006699;
}

.findrisc-btn-reset {
    flex: 1;
    padding: 15px 20px;
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.findrisc-btn-reset:hover {
    background-color: #e2e2e2;
}

/* Result Box */
.findrisc-result-box {
    margin-top: 25px;
    padding: 25px;
    border-radius: 8px;
    background-color: #f9f9f9;
    border-left: 5px solid #0088cc;
}

.highlight-box {
    text-align: center;
    margin-bottom: 20px;
}

.highlight-box span {
    font-size: 16px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.highlight-box h2 {
    margin: 0 0 10px 0;
    font-size: 42px;
    color: #333;
}

.findrisc-stats {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
}

.findrisc-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.badge-low { background-color: #2ecc71; }
.badge-elevated { background-color: #f1c40f; color: #333; }
.badge-moderate { background-color: #e67e22; }
.badge-high { background-color: #e74c3c; }
.badge-very-high { background-color: #c0392b; }

.findrisc-recommendation {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.findrisc-recommendation ul {
    margin-top: 10px;
    padding-left: 20px;
}

.findrisc-recommendation li {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .findrisc-buttons {
        flex-direction: column;
    }
    .findrisc-group input[type="number"],
    .findrisc-group select {
        max-width: 100%;
    }
    .findrisc-bmi-inputs {
        flex-direction: column;
    }
    .findrisc-bmi-inputs input {
        max-width: 100% !important;
    }
}
