@tailwind base; @tailwind components; @tailwind utilities; @layer base { body { @apply bg-gray-50 text-gray-900; } } @layer components { .stock-card { @apply bg-white rounded-xl shadow-sm hover:shadow-md transition-shadow duration-200 p-6; } .stock-positive { @apply text-green-600; } .stock-negative { @apply text-red-600; } }