/* Общие дизайн-токены для всех проектов: Parts_only, dxf-generator, PDF_parser_web, Warehouse */
:root {
    /* Типографика */
    --font-family: Calibri, 'Segoe UI', Candara, sans-serif;

    /* Цвета — единая синяя палитра */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --gradient-start: #2563eb;
    --gradient-end: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --border-color-muted: #e0e0e0;

    /* Тени */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Радиусы */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;

    /* Переходы */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;

    /* Z-index */
    --z-index-base: 1;
    --z-index-top-nav: 1100;
    --z-index-tooltip: 2000;
    --z-index-notification: 10000;
    --z-index-wait: 9500;
    --z-index-modal-overlay: 9000;
    --z-index-modal: 9600;
    --z-index-loader: 9999;

    /* Warehouse: навигация и скроллбар */
    --top-nav-height: 70px;
    --scrollbar-width: 12px;
    --scrollbar-size: 12px;
    --scrollbar-radius: 10px;
    --scrollbar-track-bg: #eef2f7;
    --scrollbar-track-shadow: inset 0 0 6px rgba(0, 0, 0, 0.12);
    --scrollbar-thumb-bg: #64748b;
    --scrollbar-thumb-hover-bg: #475569;
    --scrollbar-thumb-shadow: inset 0 0 6px rgba(0, 0, 0, 0.28);

    /* Warehouse: адаптивные ширины колонок таблиц */
    --table-col-checkbox-min: 5px;
    --table-col-checkbox-max: 28px;
    --table-col-remains-min: 25px;
    --table-col-remains-max: 24px;
    --table-col-type-min: 50px;
    --table-col-type-max: 120px;
    --table-col-dimensions-min: 60px;
    --table-col-dimensions-max: 150px;
    --table-col-supplier-min: 80px;
    --table-col-supplier-max: 200px;
    --table-col-date-min: 100px;
    --table-col-date-max: 120px;
    --table-col-length-min: 90px;
    --table-col-length-max: 130px;
    --table-col-quantity-min: 70px;
    --table-col-quantity-max: 100px;
    --table-col-weight-min: 100px;
    --table-col-weight-max: 150px;
    --table-col-area-min: 100px;
    --table-col-area-max: 150px;
    --table-col-actions-stock-min: 140px;
    --table-col-actions-stock-max: 200px;
    --table-col-actions-cutting-min: 60px;
    --table-col-actions-cutting-max: 100px;
    --table-col-name-cutting-min: 150px;
    --table-col-name-cutting-max: 40%;
}
