/*
 * Custom styles on top of Tailwind CSS.
 */

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rowIn {
  from { background-color: #e0e7ff; }
  to   { background-color: transparent; }
}

.animate-slide-down { animation: slideDown 0.2s ease-out; }
tbody tr            { animation: rowIn 0.5s ease-out; }
