/* VGF Brand CSS custom properties */
:root {
    --vgf-bg: #D9D9C9;
    --vgf-text: #6A6B56;
    --vgf-accent: #6A6B56;
    --vgf-accent2: #8A8B76;
    --vgf-dark: #4A4B3A;
}

/* Smooth transitions for interactive elements */
a, button, input, select, textarea {
    transition: all 0.15s ease;
}

/* Kanban drag visual feedback */
[draggable="true"] {
    touch-action: none;
}

[draggable="true"]:active {
    opacity: 0.6;
    cursor: grabbing;
}
