diff --git a/index.html b/index.html index f30ab6f..4ebd98a 100644 --- a/index.html +++ b/index.html @@ -526,6 +526,25 @@ font-size: 13px; } + /* ── Edge modal (same base as modal-overlay) ──────── */ + #edge-modal-overlay { + position: fixed; + inset: 0; + background: rgba(0,0,0,0.6); + z-index: 30; + display: flex; + align-items: center; + justify-content: center; + padding: 20px; + opacity: 0; + pointer-events: none; + transition: opacity 0.2s; + } + #edge-modal-overlay.open { + opacity: 1; + pointer-events: all; + } + /* ── AI Context output ─────────────────────────────── */ #ai-modal-overlay { position: fixed; @@ -740,7 +759,7 @@