/**
 * @file
 * Custom theme styles that are specific to this theme.
 * 
 * Place custom styling here that doesn't fit in other categories.
 * Keep styling minimal and focused on essentials.
 */

/* Custom focus management for skip links */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #0073aa;
  color: white;
  text-decoration: none;
  z-index: 1000;
}

/* Keyboard navigation enhancement */
.keyboard-navigation *:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}