/* Global Shared Styles */

/* Animations */
@keyframes slideIn { 
  from { opacity: 0; transform: translateY(10px); } 
  to { opacity: 1; transform: translateY(0); } 
}

.animate-slideIn { 
  animation: slideIn 0.4s ease-out forwards; 
}
