2026 소득하위 70% 기준 및 건강보험료 커트라인 (계산기 포함)
let message = "";
if (totalRecognized <= limit) {
resultDiv.style.backgroundColor = "#e8f5e9";
resultDiv.style.color = "#2e7d32";
message = `[판정: 대상 포함]
귀하의 소득인정액은 약 ${Math.round(totalRecognized).toLocaleString()}원으로, 소득하위 70% 기준(${limit.toLocaleString()}원) 이하입니다.`;
} else {
resultDiv.style.backgroundColor = "#ffebee";
resultDiv.style.color = "#c62828";
message = `[판정: 대상 제외]
귀하의 소득인정액은 약 ${Math.round(totalRecognized).toLocaleString()}원으로, 기준액을 초과합니다.`;
}
resultDiv.innerHTML = message; }