/* Custom premium range slider styling */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Raleway', sans-serif;
}
.custom-range-slider {
    width: 100% !important;
    outline: none !important;
    margin: 20px 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    background-color: transparent !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
}
div#health-score-root {
    margin: 30px auto;
}
.mail-hover:hover {
    text-decoration: underline !important;
}
input[type="range"]::-webkit-slider-runnable-track {
    box-shadow: none !important;
}
/* Chrome/Safari thumb */
.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2E8B57;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(153, 202, 29, 0.4);
    border: 3px solid #ffffff;
    transition: all 0.2s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: #2E8B57;
    box-shadow: 0 6px 14px rgba(121, 153, 40, 0.5);
}

/* Mozilla thumb */
.custom-range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #108544;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(153, 202, 29, 0.4);
    border: 3px solid #ffffff;
    transition: all 0.2s ease;
}

.custom-range-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    background: #108544;
}

/* Remove default square browser tap highlight color and text selection on mobile devices only within health score plugin */
#health-score-root *, #health-score-root .option-row, #health-score-root label.option-row, #health-score-root button, #health-score-root .cta-button, #health-score-root .back-button, #health-score-root input, #health-score-root label, #health-score-root a {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}
#health-score-root label.option-row {
    user-select: none !important;
    -webkit-user-select: none !important;
    outline: none !important;
}

/* Force Back button to be transparent without borders (overriding WP themes) */
.back-button {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

@media (max-width: 767px) {
.health_score {
    padding: 20px;
}
form.lead-capture-form {
    padding: 10px !important;
}
.health-score-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 25px 20px !important;
    min-height: 100% !important;
}
.grid-settle{
    grid-template-columns: 1fr !important;
}
    .grid-settle > div {
        border: none !important;
        padding: 0 !important;
    }
.concern-main{
    align-items: start !important;
}
label.option-row {
    gap: 10px;
    align-items: start;
    padding: 14px;
    font-size: 12px;
}
.retake-button, .back-button {
    font-size: 16px;
}
.option-circle {
    height: 14px;
    width: 14px;
    margin-top: 2px;
}
.cta-button {
font-size: 16px;
line-height: 1.3;
}
.metabolic_sts, .goal_fnt {
    font-size: 14px;
}
.lead-capture-form {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}    

}