/* Custom styles to complement Tailwind CSS */

/* Add any custom styles here that go beyond Tailwind's utility classes */

/* Example custom animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* Any other custom styling needed */ 