/* ============================================
   VISIBLEMILES — Utility Classes
   Helper classes for common patterns
   ============================================ */

.hidden { 
  display: none !important; 
  pointer-events: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript-banner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.13 0.005 260);
  color: oklch(0.82 0.015 240);
  font-family: sans-serif;
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

.signout-btn-spacing {
  margin-top: var(--gui-gap-sm);
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 8px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--bg-panel, #1a1a2e);
  color: var(--text-primary, #c5ccd4);
  border: 2px solid var(--accent, #4a9eff);
  border-radius: 4px;
  font-size: 0.875rem;
  text-decoration: none;
}









