/*
 * 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.
 */

/* ── Live Search Animation — Data Source Cards ──────────────────────────── */
@keyframes sourcePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

.source-card-pulse {
  animation: sourcePulse 1s ease-in-out infinite;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.6);
}

.source-card-success {
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.8);
  transition: box-shadow 0.3s ease;
}

.source-card-fail {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.8);
  transition: box-shadow 0.3s ease;
}
