/* Item appears: slide from top down into place */
.priority-item-appear {
  animation: slideDownIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Item disappears: slide up and fade out */
.priority-item-disappear {
  animation: slideUpOut 0.3s ease-in-out;
}

/* Keyframes for sliding top → bottom */
@keyframes slideDownIn {
  from {
    opacity: 0;
    transform: translateY(-100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideUpOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-100%) scale(0.95);
  }
}
