@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;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F5F5F0;
}

::-webkit-scrollbar-thumb {
  background: #5B9BD5;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4A90E2;
}

/* Custom color palette */
:root {
  --color-white: #FFFFFF;
  --color-cream: #FAFAF5;
  --color-light-gray: #E5E5E5;
  --color-cold-blue: #5B9BD5;
  --color-graphite: #2C2C2C;
  --color-cold-blue-dark: #4A90E2;
  --color-cold-blue-light: #E8F4FD;
  --color-text-primary: #2C2C2C;
  --color-text-secondary: #6B6B6B;
}
