');
printWindow.document.close();
printWindow.print();
}// Function to clear the text area and reset the counters
function clearText() {
document.getElementById("textInput").value = "";
document.getElementById("wordCount").textContent = "0";
document.getElementById("charCount").textContent = "0";
document.getElementById("charNoSpaceCount").textContent = "0";
}