document.addEventListener('DOMContentLoaded', () => { const questionsContainer = document.getElementById('questions-container'); const addQuestionButton = document.getElementById('add-question-button'); addQuestionButton.addEventListener('click', () => { const questionCount = document.querySelectorAll('.question-block').length; const questionBlock = document.createElement('div'); questionBlock.className = 'question-block mb-4 p-4 bg-gray-50 rounded-lg shadow-inner'; questionBlock.innerHTML = `