');
printWindow.document.write(resultBox.innerHTML); // 인쇄할 내용 삽입
printWindow.document.write('');
printWindow.document.close();
printWindow.focus();
printWindow.print(); // 인쇄 실행
printWindow.close();
// 버튼 다시 표시
buttonGroups.forEach(buttonGroup => {
buttonGroup.style.display = ''; // 원래 상태로 복원
});
}