diff --git a/diagnostic/index.html b/diagnostic/index.html
index 4438296..139ebc4 100644
--- a/diagnostic/index.html
+++ b/diagnostic/index.html
@@ -201,7 +201,7 @@
-
+
💭 ARIA denkt...
@@ -1304,7 +1304,11 @@
label = 'ARIA schreibt...';
}
- indicators.forEach(el => { if (el) el.style.display = 'block'; });
+ indicators.forEach((el, i) => {
+ if (!el) return;
+ // Haupt-Indicator ist flex (Abbrechen-Button rechts), Vollbild-Variante block
+ el.style.display = i === 0 ? 'flex' : 'block';
+ });
texts.forEach(el => { if (el) el.textContent = label; });
// Auto-Hide nach 2min (falls idle Event verpasst wird — ARIA arbeitet max 15min)