/* Custom premium range slider styling */
.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;
}
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: #99ca1d;
    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: #799928;
    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: #99ca1d;
    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: #799928;
}

/* 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: 768px) {
.health_score {
    padding: 20px;
}
.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;
}    

}