/* NadorCity.info — Accessibility helpers (font size + high contrast).
   Standalone file; does NOT alter the pre-supplied app.css. */

html.a11y-l { font-size: 110%; }
html.a11y-xl { font-size: 125%; }

/* High-contrast: boost contrast; keep images/svgs untouched. */
html.hc { filter: contrast(1.25); }
html.hc img,
html.hc svg,
html.hc .acard-img { filter: none; }

/* A11y popover. */
.a11y-menu {
  position: fixed;
  right: 16px;
  bottom: 64px;
  z-index: 1000;
  background: var(--card, #ffffff);
  color: var(--foreground, #111827);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: calc(100vw - 32px);
  flex-wrap: wrap;
  overflow-wrap: anywhere;
}
.a11y-menu button {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border, #e5e7eb);
  background: var(--card, #ffffff);
  color: var(--foreground, #111827);
  cursor: pointer;
}
.a11y-menu button:hover { opacity: 0.85; }
