/* Agilotext — accessibilité légère (dashboard /app/) */
/* Scope : uniquement sous .agilo-a11y-app pour limiter les effets de bord */

.agilo-a11y-app .agilo-a11y-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2147483646;
  padding: 0.5rem 1rem;
  background: #0f172a;
  color: #fff;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.agilo-a11y-app .agilo-a11y-skip:focus {
  left: 0;
  outline: 3px solid #38bdf8;
  outline-offset: 2px;
}

.agilo-a11y-app .agilo-a11y-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus visible clavier (sans surcharger les clics souris) */
.agilo-a11y-app :focus {
  outline: none;
}

.agilo-a11y-app :focus-visible {
  outline: 2px solid #174a96;
  outline-offset: 2px;
}
