@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
    .kanban-column {
        @apply flex flex-col flex-shrink-0 w-80 bg-slate-50 border border-slate-200 rounded-xl;
    }
    .issue-card {
        @apply bg-white p-4 rounded-lg shadow-sm border border-slate-200 hover:border-blue-300 hover:shadow-md transition-all cursor-move;
    }
}

[x-cloak] { display: none !important; }

