@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(24px); }
}

.conv-list.intro .conv-row { animation: slideUp 0.3s ease both; }
.conv-list.intro .conv-row:nth-child(1) { animation-delay: 0.02s; }
.conv-list.intro .conv-row:nth-child(2) { animation-delay: 0.04s; }
.conv-list.intro .conv-row:nth-child(3) { animation-delay: 0.06s; }
.conv-list.intro .conv-row:nth-child(4) { animation-delay: 0.08s; }
.conv-list.intro .conv-row:nth-child(5) { animation-delay: 0.10s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
