@import "tailwindcss";

/* Custom styles */
@layer base {
  body {
    @apply antialiased;
  }
}

@layer components {
  /* Button styles */
  .btn-primary {
    @apply px-4 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 transition font-medium;
  }

  .btn-secondary {
    @apply px-4 py-2 bg-gray-300 text-gray-700 rounded-lg hover:bg-gray-400 transition font-medium;
  }

  /* Card styles */
  .card {
    @apply bg-white rounded-lg shadow-md hover:shadow-lg transition-shadow;
  }
}

@layer utilities {
  /* Custom utility classes */
  .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
