/* Everything visual lives in Tailwind utilities. This file only holds the two
   things utilities can't express: the undo-window drain and the toast entrance. */

@keyframes drain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes row-out {
  to {
    opacity: 0;
    transform: translateX(-12px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
  }
}
