/* ==========================================================
   SkyRoute Travel Template — Global CSS
   Tailwind handles most styling; this file is for:
   - Scrollbar styling
   - Selection colors
   - Small visual tweaks
   ========================================================== */

::selection {
  background: rgba(59, 130, 246, 0.35);
  color: #f9fafb;
}

/* Scrollbar (WebKit) */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #020617;
}
body::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 999px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Screen-reader-only helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
