const statusElement = document.getElementById("status") export function updateConnectionStatus(connection) { statusElement.textContent = `Server Connection: ${connection}` switch (connection) { case "connected": statusElement.style.color = "green"; break; case "disconnected": statusElement.style.color = "red"; break; } }