/*
Design tokens for Bee-ERP.
Safe for designers: colors, spacing, sizing, and table width variables.
Do not put business-state or data-specific rules here.
*/

:root {
    --erp-radius-sm: 6px;
    --erp-radius-md: 8px;
    --erp-radius-lg: 12px;

    --erp-gap-xs: 4px;
    --erp-gap-sm: 8px;
    --erp-gap-md: 12px;
    --erp-gap-lg: 16px;
    --erp-gap-xl: 24px;

    --erp-table-doc-width: 128px;
    --erp-table-date-width: 112px;
    --erp-table-code-width: 128px;
    --erp-table-status-width: 104px;
    --erp-table-actions-width: 132px;
    --erp-table-qty-width: 128px;
    --erp-table-money-width: 156px;
    --erp-table-uom-width: 92px;
    --erp-table-partner-min: 220px;
    --erp-table-material-min: 280px;
}

