async function fetchStatus() { const el = document.getElementById("status-content"); try { const res = await fetch("/health"); const d = await res.json(); const isOk = d.status === "ok"; const isDegraded = d.status === "degraded"; const dotClass = isOk ? "ok" : isDegraded ? "degraded" : "error"; const label = isOk ? "All Systems Operational" : isDegraded ? "Degraded Performance" : "Service Disruption"; const now = new Date().toLocaleTimeString(); el.innerHTML = "