/* toast.css — the transient message at the bottom of the screen.
   A HUD capsule: it lands on the inverse surface so it is legible over any
   screen it appears on, and it never takes focus — aria-live announces it. */
.toast{position:fixed;bottom:26px;left:50%;transform:translateX(-50%);background:var(--inverse-bg);color:var(--inverse-ink);padding:12px 20px;border-radius:var(--r-pill);font-size:13.5px;font-weight:500;letter-spacing:-.006em;box-shadow:var(--shadow-lg);z-index:60;max-width:min(560px,calc(100vw - 32px));text-align:center;animation:toastIn 300ms var(--ease-spring) both}
