.lc-transition-enter { transition: all 0.3s ease; }
.lc-transition-enter-start { opacity: 0; transform: translateY(-10px); }
.lc-transition-enter-end { opacity: 1; transform: translateY(0); }
.lc-transition-leave { transition: all 0.2s ease; }
.lc-transition-leave-start { opacity: 1; transform: translateY(0); }
.lc-transition-leave-end { opacity: 0; transform: translateY(-10px); }