@tailwind base; @tailwind components; @tailwind utilities; body { @apply bg-gray-900 text-gray-100 min-h-screen; } @layer components { .btn { @apply px-4 py-2 rounded-lg font-medium transition-colors duration-200 disabled:opacity-50 disabled:cursor-not-allowed; } .btn-primary { @apply bg-primary-600 hover:bg-primary-700 text-white; } .btn-secondary { @apply bg-gray-700 hover:bg-gray-600 text-white; } .btn-danger { @apply bg-red-600 hover:bg-red-700 text-white; } .input { @apply w-full px-4 py-2 bg-gray-800 border border-gray-700 rounded-lg text-white placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent; } .card { @apply bg-gray-800 rounded-xl p-6 shadow-lg; } .link { @apply text-primary-400 hover:text-primary-300 transition-colors; } }