body {
  font-family: 'Lato', sans-serif;
  background-color: #f9fafb; /* Gray-50 */
  min-height: 100vh;
  color: #111827; /* Gray-900 */
  -webkit-font-smoothing: antialiased;
}

.animate-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
