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

/* Lead circle on posted cards — static on load, animated on interaction */
.slot-lead-circle {
  box-shadow: 0 0 0 3px #059669;
  border-color: #059669 !important;
}

.slot-lead-circle.animate {
  animation: lead-circle-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes lead-circle-in {
  0% {
    box-shadow: 0 0 0 0px transparent;
  }
  100% {
    box-shadow: 0 0 0 3px #059669;
  }
}

.slot-lead-circle-out {
  animation: lead-circle-out 0.3s ease-out both;
}

@keyframes lead-circle-out {
  0% {
    box-shadow: 0 0 0 3px #059669;
  }
  100% {
    box-shadow: 0 0 0 0px transparent;
  }
}
