/* Basis-Style für die Skiplinks (versteckt sie außerhalb des sichtbaren Bereichs) */
.wcag-helper-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-decoration: none;

  /* Sehr hoher z-index, damit die Links immer über anderen Elementen liegen */
  z-index: 999999;
  transition: left 0.3s ease;
}

/* Beim Tastaturfokus oder Aktivieren in den sichtbaren Bereich schieben */
.wcag-helper-skip-link:focus,
.wcag-helper-skip-link:active {
  left: 10px; /* oder andere Position, z. B. top: 10px; */
  top: 10px;
  width: auto;
  height: auto;
  overflow: visible;
  outline: none;
}
