/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Turbo's top-of-page progress bar, shown during page visits and form submissions */
.turbo-progress-bar {
  height: 8px;
  background-color: transparent;
  background-image: linear-gradient(90deg, #2563eb, #f97316, #2563eb, #f97316);
  background-size: 200% 100%;
  animation: turbo-progress-bar-flow 1.2s linear infinite;
}

@keyframes turbo-progress-bar-flow {
  from { background-position: 0% 0; }
  to { background-position: -200% 0; }
}
