/* Hide skip links visually but make them focusable */
.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }
  
  /* Show skip links when focused */
  .skip-link:focus {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #0055FF;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
  }
  