/* =====================================================================
   Food Zavod ERP — дизайн-система
   Палитра — из логотипа «Сегодня»: янтарный #FBBB4E, коралл #E85B41,
   почти чёрный #221E1F. Отступы — шкала 4/8px. Шрифт — системный стек.
   ===================================================================== */

:root {
    /* --- Цвет --- */
    --bg: #F6F4EF;
    --card: #FFFFFF;
    --ink: #221E1F;
    --muted: #6E6760;
    --line: #E6E1D8;

    --brand: #FBBB4E;          /* янтарный из логотипа */
    --brand-hover: #F2AC33;
    --brand-soft: #FDF3DF;
    --brand-ink: #221E1F;      /* текст на янтарном */

    --coral: #E85B41;          /* коралловый росчерк логотипа */
    --coral-soft: #FBE5DF;

    --ok: #2F7D4F;
    --ok-soft: #E2F0E7;
    --warn-text: #7A5200;
    --warn-soft: #FDF0D3;
    --err: #C13B24;
    --err-soft: #F9DFD8;

    --focus: #E85B41;

    /* --- Отступы (4/8) --- */
    --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
    --s5: 24px; --s6: 32px; --s7: 48px;

    /* --- Типографика --- */
    --fs-sm: 13px;
    --fs-base: 16px;
    --fs-md: 18px;
    --fs-lg: 22px;
    --fs-xl: 28px;
    --fs-2xl: 36px;

    /* --- Форма --- */
    --r-sm: 6px; --r-md: 10px; --r-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(34, 30, 31, .06);
    --shadow-md: 0 6px 20px rgba(34, 30, 31, .10);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: var(--fs-base);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
}

a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { text-decoration-color: var(--coral); }

/* Видимый фокус — везде */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, .card-tile:focus-visible, .ws-tile:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
    border-radius: var(--r-sm);
}

/* --- Шапка --- */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    padding: var(--s3) var(--s5);
    background: var(--card);
    border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: var(--s3); font-size: var(--fs-md); color: var(--ink); text-decoration: none; }
.brand b { font-weight: 800; }
.brand-logo { width: 34px; height: 34px; border-radius: 50%; display: block; }
.topbar nav { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; }
.topbar nav a { font-size: 15px; }
.topbar .user { color: var(--muted); font-size: var(--fs-sm); }
.inline-form { display: inline; margin: 0; }
.linkbtn { background: none; border: none; color: var(--ink); cursor: pointer; font-size: 15px; padding: 0; text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.linkbtn:hover { text-decoration-color: var(--coral); }

.container { max-width: 1080px; margin: var(--s5) auto; padding: 0 var(--s5); }

/* --- Заголовки, хлебные крошки --- */
h1 { font-size: var(--fs-xl); font-weight: 800; margin: 0; letter-spacing: -0.3px; }
h2 { font-size: var(--fs-md); font-weight: 700; margin: 0; }
.page-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s4); flex-wrap: wrap; margin: var(--s5) 0 var(--s4);
}
.crumbs { display: flex; gap: var(--s2); flex-wrap: wrap; font-size: var(--fs-sm); color: var(--muted); margin-top: var(--s2); }
.crumbs a { color: var(--muted); }
.group-title { margin: var(--s6) 0 var(--s3); font-size: var(--fs-lg); font-weight: 800; }

/* --- Карточки-контейнеры и формы --- */
.card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: var(--s5); margin-top: var(--s5);
    box-shadow: var(--shadow-sm);
}
.card-narrow { max-width: 400px; margin: 64px auto; }

.field { display: block; margin-bottom: var(--s4); }
.field > span { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--muted); margin-bottom: var(--s1); }
.input, .field input[type="text"], .field input[type="password"],
.field input[type="date"], .field input[type="file"], .field select, select.input {
    width: 100%; padding: 10px 12px;
    border: 1px solid var(--line); border-radius: var(--r-sm);
    font-size: var(--fs-base); background: var(--card); color: var(--ink);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }

/* --- Кнопки --- */
.btn {
    display: inline-block; padding: 10px var(--s4);
    border: 1px solid var(--line); border-radius: var(--r-sm);
    background: var(--card); color: var(--ink);
    font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none;
    transition: border-color .12s, background .12s;
}
.btn:hover { border-color: var(--muted); text-decoration: none; }
.btn-primary { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.actions { display: flex; gap: var(--s3); flex-wrap: wrap; }

/* --- Таблицы --- */
.table {
    width: 100%; border-collapse: collapse;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.table th, .table td { padding: var(--s3) var(--s4); text-align: left; border-bottom: 1px solid var(--line); }
.table th {
    background: var(--card); font-size: var(--fs-sm); color: var(--muted);
    font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    position: sticky; top: 0; z-index: 2;
}
.table tbody tr:nth-child(even) td { background: #FAF8F3; }
.table tbody tr:hover td { background: var(--brand-soft); }
.table tr:last-child td { border-bottom: none; }
.table .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.section-row td { background: var(--brand-soft) !important; font-weight: 700; }

/* --- Бейджи и сообщения --- */
.badge {
    display: inline-block; font-size: 12px; font-weight: 700;
    padding: 3px 10px; border-radius: 999px;
    background: #EFEBE3; color: var(--muted);
}
.badge-uploaded, .badge-pending, .badge-new { background: #EFEBE3; color: #5A544D; }
.badge-processed, .badge-parsed { background: var(--ok-soft); color: var(--ok); }
.badge-error { background: var(--err-soft); color: var(--err); }
/* Стадии производства: выдана → в работе → закрыта. */
.badge-released { background: var(--brand-soft); color: var(--warn-text); }
.badge-in_production, .badge-in_progress { background: var(--warn-soft); color: var(--warn-text); }
.badge-completed, .badge-done { background: var(--ok-soft); color: var(--ok); }

.messages { list-style: none; padding: 0; margin: var(--s4) 0; }
.msg { padding: var(--s3) var(--s4); border-radius: var(--r-sm); margin-bottom: var(--s2); font-weight: 500; }
.msg-success { background: var(--ok-soft); color: var(--ok); }
.msg-warning { background: var(--warn-soft); color: var(--warn-text); }
.msg-error { background: var(--err-soft); color: var(--err); }

.form-errors { color: var(--err); font-size: 14px; margin-bottom: var(--s3); }
.hint { color: var(--muted); font-size: 14px; }
.empty { color: var(--muted); padding: var(--s4) 0; }

.meta {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: var(--s4); display: grid; gap: var(--s2);
    box-shadow: var(--shadow-sm);
}
.meta-k { color: var(--muted); display: inline-block; min-width: 160px; }

.summary-stats { display: flex; gap: var(--s5); flex-wrap: wrap; margin: var(--s2) 0 var(--s4); color: var(--muted); font-size: 14px; }
.summary-stats .warn { color: var(--warn-text); font-weight: 600; }

/* --- Поиск --- */
.search-bar { display: flex; gap: var(--s2); margin: var(--s4) 0; }
.search-bar input { flex: 1; padding: 12px 14px; font-size: var(--fs-base); }

/* --- Плитки цехов --- */
.ws-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--s4); }
.ws-tile {
    display: flex; flex-direction: column; gap: var(--s1);
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: var(--s5); color: var(--ink);
    text-decoration: none; box-shadow: var(--shadow-sm);
    transition: border-color .12s, box-shadow .12s, transform .12s;
}
.ws-tile:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.ws-tile-name { font-size: var(--fs-md); font-weight: 700; }
.ws-tile-count { font-size: var(--fs-2xl); font-weight: 800; line-height: 1.1; }
.ws-tile-warn { border-color: var(--coral); }
.ws-tile-warn .ws-tile-count { color: var(--coral); }
/* Плитка-кнопка (выбор цеха при входе): .ws-tile рассчитан на ссылку,
   у <button> свои шрифт/выравнивание — сбрасываем. */
.ws-tile-btn { font: inherit; text-align: left; width: 100%; cursor: pointer; }

/* --- Сетка станционных карточек --- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--s3); }
.card-tile {
    display: block; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: var(--s4); color: var(--ink);
    text-decoration: none; box-shadow: var(--shadow-sm);
    transition: border-color .12s, box-shadow .12s;
}
.card-tile:hover { border-color: var(--brand); box-shadow: var(--shadow-md); text-decoration: none; }
.card-tile-name {
    font-weight: 600; line-height: 1.35; min-height: 2.7em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-tile-qty { font-size: var(--fs-lg); font-weight: 800; margin-top: var(--s2); }
.card-tile-qty span { font-size: 14px; font-weight: 500; color: var(--muted); }
.card-tile-meta { font-size: 12px; color: var(--muted); margin-top: var(--s1); }

/* --- Детальная станционная карта --- */
.station-head {
    display: flex; align-items: baseline; gap: var(--s5); flex-wrap: wrap;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: var(--s4) var(--s5); margin-bottom: var(--s4);
    box-shadow: var(--shadow-sm);
}
.station-qty { font-size: var(--fs-2xl); font-weight: 800; }
.station-qty span { font-size: var(--fs-md); font-weight: 500; color: var(--muted); }
.station-sub { color: var(--muted); font-size: 14px; }
.ws-badges { margin-top: var(--s2); display: flex; gap: var(--s2); flex-wrap: wrap; }
.station-table td { font-size: var(--fs-md); padding: var(--s4); }

/* Блок карты — одна закладка: заголовок, состав, итог. Так карта устроена в
   рабочей книге цеха, и так её читают у плиты: блок за блоком, а не деревом. */
.block {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
    margin-bottom: var(--s4); overflow: hidden; box-shadow: var(--shadow-sm);
}
.block-head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: var(--s4); flex-wrap: wrap;
    background: var(--brand-soft); border-bottom: 1px solid var(--line);
    padding: var(--s3) var(--s5);
}
.block-title { font-size: var(--fs-md); font-weight: 700; }
.block-level {
    display: inline-block; min-width: 20px; height: 20px; line-height: 20px;
    text-align: center; border-radius: 50%; background: var(--brand);
    color: var(--brand-ink); font-size: 11px; font-weight: 800; margin-right: var(--s2);
}
.block-total { font-size: var(--fs-md); color: var(--muted); white-space: nowrap; }
.block-total b { font-size: var(--fs-lg); color: var(--ink); }
.block-table { margin: 0; border-radius: 0; box-shadow: none; border: none; }
.block-table td, .block-table th { padding: var(--s2) var(--s5); }
.block-foot {
    padding: var(--s2) var(--s5); border-top: 1px solid var(--line);
    color: var(--muted); font-size: var(--fs-sm); background: #FAF8F3;
}
.tag-block {
    display: inline-block; margin-left: var(--s2); padding: 1px var(--s2);
    border-radius: 999px; background: #EFEBE3; color: #5A544D;
    font-size: 11px; font-weight: 600; vertical-align: middle;
}
.muted { color: var(--muted); }

.ws-form {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: var(--s4) var(--s5); margin-bottom: var(--s4);
}
.ws-form-title { font-size: var(--fs-sm); font-weight: 600; color: var(--muted); margin-bottom: var(--s3); }
.ws-checks { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); margin-bottom: var(--s4); }
.ws-check { display: flex; align-items: center; gap: var(--s2); font-size: 15px; cursor: pointer; }
.ws-check input { width: 18px; height: 18px; accent-color: var(--coral); }

/* =====================================================================
   Киоск-режим — монитор в цеху: тёмная тема, крупная типографика
   ===================================================================== */
body.kiosk {
    --bg: #191613;
    --card: #242019;
    --ink: #F6F1E7;
    --muted: #B3AA9C;
    --line: #3A342B;
    background: var(--bg);
    font-size: 20px;
}
body.kiosk .container { max-width: 1600px; }

.kiosk-bar { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4); padding: var(--s4) 0 var(--s3); border-bottom: 3px solid var(--brand); }
.kiosk-title { font-size: 44px; font-weight: 800; line-height: 1.1; }
.kiosk-sub { color: var(--muted); font-size: 20px; margin-top: var(--s2); }

.kiosk-list { display: flex; flex-direction: column; }
.kiosk-row {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: var(--s6); padding: var(--s4) var(--s2);
    border-bottom: 1px solid var(--line);
}
.kiosk-name { font-size: 26px; font-weight: 700; line-height: 1.25; }
.kiosk-comp { color: var(--muted); font-size: 17px; margin-top: var(--s1); line-height: 1.5; }
.kiosk-qty { font-size: 38px; font-weight: 800; color: var(--brand); white-space: nowrap; font-variant-numeric: tabular-nums; }
.kiosk-qty span { font-size: 20px; color: var(--muted); font-weight: 600; }

/* --- Индикатор загрузки --- */
#loading {
    position: fixed; inset: 0; z-index: 100;
    display: flex; flex-direction: column; gap: var(--s3);
    align-items: center; justify-content: center;
    background: rgba(246, 244, 239, .8);
    backdrop-filter: blur(2px);
}
#loading[hidden] { display: none; }
#loading-text { font-weight: 600; color: var(--muted); }
.spinner {
    width: 44px; height: 44px; border-radius: 50%;
    border: 4px solid var(--brand-soft); border-top-color: var(--brand);
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
body.kiosk #loading { background: rgba(25, 22, 19, .8); }

/* --- Рабочее место цеха (production) --- */
.progress { height: 10px; background: var(--line); border-radius: 999px; overflow: hidden; margin-top: var(--s2); }
.progress-bar { height: 100%; background: var(--brand); border-radius: 999px; transition: width .2s; }
.progress-wrap { margin: var(--s4) 0; }
.progress-label { margin-top: var(--s2); color: var(--muted); font-size: 14px; }
.progress-label b { color: var(--ink); font-size: var(--fs-base); }

.bulk-actions { margin-bottom: var(--s4); }
/* Полоса прогресса внутри таблицы «Ход производства». */
.progress-cell { width: 200px; }
.progress-cell .progress { margin-top: 0; }
.progress-label .warn { color: var(--warn-text); font-weight: 600; }

.task-list { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s4); }
.task {
    display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap;
    background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--line);
    border-radius: var(--r-md); padding: var(--s4) var(--s5); box-shadow: var(--shadow-sm);
}
.task-active { border-left-color: var(--brand); background: var(--brand-soft); }
.task-done { opacity: .6; border-left-color: var(--ok); }
.task-main { flex: 1 1 320px; min-width: 0; }
.task-name { font-size: var(--fs-md); font-weight: 700; color: var(--ink); text-decoration: none; }
.task-name:hover { text-decoration: underline; }
.task-meta { color: var(--muted); font-size: 14px; margin-top: var(--s1); }
.task-qty { font-size: var(--fs-xl); font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }
.task-qty span { font-size: 14px; font-weight: 500; color: var(--muted); }
.task-act { display: flex; gap: var(--s3); align-items: center; flex-wrap: wrap; }
.task-ok { color: var(--ok); font-weight: 700; white-space: nowrap; }

/* Кнопки в цеху — под палец на планшете и читаемые с монитора. */
.btn-lg { min-height: 52px; padding: 0 var(--s5); font-size: var(--fs-md); display: inline-flex; align-items: center; }

/* Киоск: та же разметка заданий, только крупнее и на тёмном фоне. */
body.kiosk .task { padding: var(--s5); gap: var(--s6); }
body.kiosk .task-name { font-size: 26px; }
body.kiosk .task-qty { font-size: 38px; color: var(--brand); }
body.kiosk .task-qty span, body.kiosk .task-meta { font-size: 16px; }
body.kiosk .task-active { background: #2E2718; }
body.kiosk .btn-lg { min-height: 64px; font-size: 20px; }

/* Наследование цеха в дереве блюда. */
.tree-inherit { font-size: 12px; color: var(--muted); white-space: nowrap; }

/* --- Дерево состава в станционной карте --- */
.tree-cell { display: inline-block; }
.tree-mark { color: var(--muted); margin-right: var(--s1); }
.station-table tr.lvl-0 td { font-weight: 600; }
.station-table tr.lvl-1 td, .station-table tr.lvl-2 td,
.station-table tr.lvl-3 td, .station-table tr.lvl-4 td { color: var(--muted); }

/* --- Аналитика --- */
.stat-tiles { margin: var(--s4) 0; }
/* Строка, на которую надо посмотреть: заказ давно выдан, а цех не взялся. */
.row-warn { background: var(--warn-soft); }
.row-warn td { border-color: #EBD9AE; }
.warn-text { color: var(--warn-text); font-weight: 600; }

.timeline { list-style: none; padding: 0; margin: var(--s4) 0; }
.timeline li {
    display: flex; align-items: baseline; gap: var(--s4); flex-wrap: wrap;
    padding: var(--s3) 0 var(--s3) var(--s5);
    border-left: 2px solid var(--line); position: relative; color: var(--muted);
}
.timeline li::before {
    content: ""; position: absolute; left: -7px; top: 18px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--line);
}
.timeline li.done { color: var(--ink); }
.timeline li.done::before { background: var(--brand); border-color: var(--brand); }
.timeline-label { font-weight: 600; min-width: 220px; }
.timeline-time { font-variant-numeric: tabular-nums; }

/* --- Зона загрузки файлов/папки --- */
.upload-modes { display: flex; align-items: stretch; gap: var(--s4); }
.upload-modes .dropzone { flex: 1; }
.dz-or { align-self: center; color: var(--muted); font-weight: 600; }
.dropzone {
    border: 2px dashed var(--line); border-radius: var(--r-md);
    padding: var(--s5); text-align: center; background: var(--bg);
    transition: border-color .12s;
}
.dropzone:hover { border-color: var(--brand); }
.dz-title { font-weight: 700; font-size: var(--fs-md); }
.dropzone .hint { margin: var(--s1) 0 var(--s3); }
.dropzone input[type="file"] { width: 100%; }

@media (max-width: 640px) {
    .upload-modes { flex-direction: column; }
}

/* --- Пустое состояние --- */
.empty-state {
    text-align: center; padding: var(--s7) var(--s5); margin-top: var(--s5);
    background: var(--card); border: 1px dashed var(--line); border-radius: var(--r-lg);
}
.empty-state h2 { margin-bottom: var(--s2); }
.empty-state p { color: var(--muted); margin: 0 0 var(--s4); }

/* --- Мелкие ссылки-действия в таблицах --- */
.row-actions { display: flex; gap: var(--s3); font-size: 14px; white-space: nowrap; }

/* --- Пагинация --- */
.pager { display: flex; align-items: center; gap: var(--s4); margin-top: var(--s4); }

/* --- Фильтр-табы --- */
.filter-tabs { display: flex; gap: var(--s2); margin: var(--s3) 0; }
.filter-tab {
    padding: 6px 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
    color: var(--muted); text-decoration: none; border: 1px solid var(--line);
}
.filter-tab:hover { text-decoration: none; border-color: var(--muted); }
.filter-tab.active { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }

/* --- Дерево каталога блюд --- */
.tree { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.tree-head, .tree-row {
    display: grid; grid-template-columns: minmax(220px, 1fr) minmax(240px, 1.4fr);
    gap: var(--s4); padding: var(--s3) var(--s4); border-bottom: 1px solid var(--line);
}
.tree-head { font-size: var(--fs-sm); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.tree-row:last-child { border-bottom: none; }
.tree-row:nth-child(even) { background: #FAF8F3; }
.tree-name { display: flex; align-items: center; gap: var(--s2); padding-left: calc(var(--lvl, 0) * 22px); }
.tree-indent { flex: 0 0 auto; }
.tree-row[style*="--lvl: 0"] .tree-title { font-weight: 700; }
.tree-row:not([style*="--lvl: 0"]) .tree-name::before {
    content: "└"; color: var(--muted); margin-right: 2px;
}
.tree-art { font-size: 12px; color: var(--muted); white-space: nowrap; }
.tree-ws { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); }
.ws-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; padding: 2px 4px; border-radius: var(--r-sm); }
.ws-chip:hover { background: var(--brand-soft); }
.ws-chip input { width: 16px; height: 16px; accent-color: var(--coral); }

@media (max-width: 640px) {
    .tree-head, .tree-row { grid-template-columns: 1fr; gap: var(--s2); }
}

/* --- Адаптивность --- */
@media (max-width: 640px) {
    .container { padding: 0 var(--s4); margin-top: var(--s4); }
    h1 { font-size: var(--fs-lg); }
    .grid-2 { grid-template-columns: 1fr; }
    .topbar { padding: var(--s3) var(--s4); }
    .table { display: block; overflow-x: auto; }
    .kiosk-title { font-size: 30px; }
    .kiosk-qty { font-size: 28px; }
    .kiosk-name { font-size: 20px; }

    /* Рабочее место цеха на телефоне: карточка в столбик, кнопка во всю
       ширину — по ней попадают мокрым пальцем, не глядя. */
    .task { gap: var(--s3); padding: var(--s4); }
    .task-main { flex: 1 1 100%; }
    .task-qty { font-size: var(--fs-lg); }
    .task-act { flex: 1 1 100%; }
    .task-act .inline-form { flex: 1; }
    .btn-lg { width: 100%; justify-content: center; min-height: 56px; }
    .timeline-label { min-width: 0; }
    .progress-cell { width: auto; min-width: 120px; }
}
