@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes grow {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.animate-fade { animation: fade 0.6s ease-in-out; }
.animate-grow { animation: grow 0.8s ease-out; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #E5E7EB; }
::-webkit-scrollbar-thumb { background: #1D4ED8; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #1D4ED8; }

:root {
  --color-primary: #1D4ED8;
  --color-primary-dark: #1D4ED8;
  --color-accent: #16A34A;
  --color-accent-hover: #15803D;
  --color-bg: #FFFFFF;
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
}
