/* Crow's Nest Styles v2.0 */
/*
Author:       SeaMonster Studios
Version:      1.9.16
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

#nav-instructions {
    position: absolute;
    text-align: center;
    width: 100%;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(0,0,0,.55);
    border-radius:4px;
    padding: 12px;
    font-family: arial;
    font-size: 14px;
    color: #fff;
    text-shadow: -1px 1px 0 #000,
				 1px 1px 0 #000,
				 1px -1px 0 #000,
				 -1px -1px 0 #000;
}

/* Skip link for skippable sections */
.skip-component-link {
  position: absolute;
  left: 50%;
  top: -2.5em;
  transform: translate(-50%, 100%);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #111 !important;
  padding: 4px 14px;
  border-radius: 6px;
  z-index: 99999;
  font-family: inherit;
  font-size: 15px;
  font-weight: normal;
  text-shadow: none;
  outline: none;
  border: 2px solid #111;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  margin: 0;
}
.skip-component-link:focus, .skip-component-link:active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* Optional: add spacing for accessibility */
.skippable {
  margin-top: 16px;
  position: relative;
}