/* common.css — Shared styles for all apps using ServerUtils.Layout.
   This file is symlinked into each app's static/css/ directory. */

/* Skip-navigation link: hidden off-screen, visible on keyboard focus. */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-nav:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.75em 1.5em;
  background: #fff;
  color: #000;
  z-index: 10000;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
