document.addEventListener('DOMContentLoaded', () => { const chatWindow = document.getElementById('chat-window'); const chatForm = document.getElementById('chat-form'); const userInput = document.getElementById('user-input'); function appendMessage(text, sender) { const msgDiv = document.createElement('div'); msgDiv.classList.add('message', sender === 'user' ? 'user-message' : 'bot-message'); // msgDiv.textContent = text; if (sender === 'bot') { // Renders HTML tags like and