/*
 * 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.
 *
 * NOTE: Landing page styles have been moved to landing.css to avoid conflicts with PTE branding.
 */

/* Pipeline Progress Indicator */
@keyframes pipeline-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
}

.pipeline-node-current {
  animation: pipeline-pulse 2s ease-in-out infinite;
}

.pipeline-connector-dashed {
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #d1d5db 0px,
    #d1d5db 6px,
    transparent 6px,
    transparent 12px
  );
}

.pipeline-connector-dashed-v {
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #d1d5db 0px,
    #d1d5db 6px,
    transparent 6px,
    transparent 12px
  );
}
