/* Turbo Drive Progress Bar - shows at top during navigation */
.turbo-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-blue);
  z-index: 10000;
  transition: width 0.3s ease-out, opacity 0.15s ease;
  box-shadow: 0 0 10px var(--color-blue);
}

/* Ensure progress bar is visible even on dark backgrounds */
.turbo-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}
