/* Turbo Drive progress bar */
.turbo-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #facc15; /* yellow-400 */
  z-index: 9999;
  transition: width 300ms ease-out;
  box-shadow: 0 0 10px #facc15, 0 0 5px #facc15;
}

/* Loading state overlay for full-page transitions */
.turbo-loading {
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 150ms ease-in-out;
}
