Define Research Topic
Conduct Initial Literature Search
Evaluate Sources
Organize Literature
Synthesize Information
Write Review
Revise and Edit
Submit Review
body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; } .flowchart { display: flex; align-items: center; flex-wrap: wrap; width: 100%; max-width: 1000px; } .node { padding: 10px 20px; margin: 10px; background-color: #4CAF50; color: white; border-radius: 5px; text-align: center; } .arrow { font-size: 24px; color: #4CAF50; } @keyframes blink { 50% { opacity: 0; } } .blink { animation: blink 1s infinite; } document.addEventListener("DOMContentLoaded", () => { const nodes = document.querySelectorAll(".node"); let currentNode = 0; function blinkNextNode() { nodes.forEach(node => node.classList.remove("blink")); nodes[currentNode].classList.add("blink"); currentNode = (currentNode + 1) % nodes.length; } setInterval(blinkNextNode, 1000); });