/* public/css/check-anim.css */
/* Blink-Overlay für Erfolg (um Modal-Karte) */
.blink-bg-success {
  animation: blinkSucc 0.9s ease-out 1;
}
@keyframes blinkSucc {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50%  { box-shadow: 0 0 0 9999px rgba(16,185,129,.12); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* ✓ Overlay (Pop-In) – selektor korrigiert auf .checkmark */
#success-mark .checkmark {
  animation: popIn .75s ease-out;
}
@keyframes popIn {
  0%   { transform: scale(.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
