.animate-copy-btn {
  animation: copyPulse 0.35s ease-in-out;
}

@keyframes copyPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.07); }
  100% { transform: scale(1); }
}