/* CSS Customizado adicional (a maior parte está no Tailwind) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37; 
}

/* Kanban - coluna recebendo um card arrastado */
.kanban-dropzone--over {
    background: rgba(212, 175, 55, 0.06);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.35);
}
