:root {
  --ink: #19191d;
  --muted: #73737c;
  --line: #e7e7eb;
  --canvas: #f8f8f9;
  --paper: #ffffff;
  --purple: #4525d4;
  --purple-pale: #eeebff;
  --green: #16845b;
  --green-pale: #dff5e9;
  --orange: #d97706;
  --orange-pale: #fff0dd;
  --red: #d94848;
  --red-pale: #ffe8e8;
  --control-height: 44px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
}

* { box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }
body { margin: 0; background: var(--canvas); font-size: 15px; }
button, input, textarea, select { font: inherit; }
button { appearance: none; border: 0; cursor: pointer; text-align: left; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: block; width: 16px; height: 16px; flex: 0 0 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.app-shell { display: grid; grid-template-columns: 78px minmax(0, 1fr); height: 100dvh; max-height: 100dvh; min-height: 0; overflow: hidden; }
.sidebar { display: flex; flex-direction: column; align-items: center; padding: 18px 10px; color: #b9b9bf; background: #050505; }
.brand { display: grid; width: 44px; height: 44px; margin: 1px 0 32px; place-items: center; }.brand-mark { width: 44px; height: 44px; overflow: visible; }
.sidebar nav { display: grid; width: 100%; gap: 9px; }
.nav-item { display: grid; width: 100%; height: 38px; place-items: center; color: #bfc0c4; background: #202022; border-radius: 4px; }
.nav-item:hover, .nav-item.active { color: white; background: #343437; }
.nav-item .icon { width: 19px; height: 19px; flex-basis: 19px; }
.nav-item b { display: none; }
.sidebar-bottom { display: flex; justify-content: center; width: 100%; margin-top: auto; padding-top: 15px; border-top: 1px solid #29292a; }
.sidebar-bottom > span:nth-child(2) { display: none; }
.logout-button { display: grid; width: 32px; height: 32px; margin-top: 10px; place-items: center; color: #bfc0c4; background: transparent; border-radius: 5px; }.logout-button:hover { color: white; background: #27272a; }.logout-button .icon { width: 18px; height: 18px; }
.avatar { display: grid; width: 29px; height: 29px; place-items: center; color: #3d2f95; background: #cfc8ff; border-radius: 50%; font-size: 10px; font-weight: 800; }

.topbar { display: flex; align-items: center; height: 72px; gap: 22px; padding: 0 28px; background: white; border-bottom: 1px solid var(--line); }
main { min-width: 0; min-height: 0; overflow: hidden; }
.workspace { display: inline-flex; align-items: center; gap: 9px; height: 44px; color: #202024; font-size: 14px; font-weight: 700; white-space: nowrap; }
.workspace-icon { width: 18px; height: 18px; color: #5f5f67; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.search { display: flex; align-items: center; flex: 1; min-width: 0; height: 42px; gap: 8px; padding: 0 15px; color: #85858d; border: 1px solid #dedee2; border-radius: 24px; }
.search .icon { width: 15px; height: 15px; stroke-width: 2; }
.search input { width: 100%; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 14px; }
.search input::placeholder { color: #a4a4ab; }
.primary, .secondary, .filter, .link-button { padding: 10px 14px; border-radius: 5px; font-weight: 650; }
.topbar > .primary { margin-left: auto; white-space: nowrap; }
.primary { display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: white; background: #1d1d1f; box-shadow: inset 0 0 0 1px #333; }
.primary:hover { background: #333; }
.primary .icon { width: 16px; height: 16px; stroke-width: 2.4; }
.secondary, .filter { color: #35353a; background: white; border: 1px solid #e2e2e5; }

.view { display: none; padding: 36px; }
.view.active { display: flex; height: calc(100dvh - 72px); min-height: 0; flex-direction: column; overflow: hidden; }
.view.active:not(#requests) { overflow: auto; }
.page-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 27px; }
.eyebrow { margin: 0 0 8px; color: #77777e; font-size: 11px; font-weight: 760; letter-spacing: .11em; }
.page-heading h1 { margin: 0 0 10px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: clamp(34px, 3vw, 48px); font-weight: 500; letter-spacing: -.065em; line-height: .94; }
.muted { margin: 0; color: var(--muted); font-size: 14px; }
.heading-metrics { display: flex; gap: 10px; }
.heading-metrics div { min-width: 135px; padding: 12px 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 1px 2px #11111105; }
.heading-metrics span { display: block; color: #82828a; font-size: 12px; }
.heading-metrics b { display: block; margin-top: 5px; font-size: 21px; line-height: 1; }
.warn { color: var(--orange) !important; }
.toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tabs { display: flex; gap: 4px; }
.tab { padding: 9px 11px; color: #6e6e75; background: transparent; border-radius: 5px; font-weight: 600; }
.tab.active { color: #222225; background: #ececee; }

.request-grid { display: grid; grid-template-columns: minmax(610px, 1fr) 334px; flex: 1; min-height: 0; gap: 20px; align-items: stretch; }
.list-card, .summary-card, .approval-card, .supplier-grid article, .metric, .attention, .log-card, .data-card, .supplier-table, .route-card { background: var(--paper); border: 1px solid var(--line); border-radius: 11px; box-shadow: 0 1px 2px #11111104; }
.list-header, .request-row { display: grid; grid-template-columns: minmax(350px, 1fr) 230px 150px 160px; min-width: 890px; gap: 16px; align-items: center; }
.list-header { padding: 14px 22px; color: #8d8d94; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 760; letter-spacing: .095em; }
.request-row { width: 100%; min-height: 76px; padding: 16px 22px; background: white; border-bottom: 1px solid #ececef; }
.request-row > span:nth-child(3), .request-row > b { white-space: nowrap; }
.list-card, .summary-card { min-height: 0; overflow: auto; }
.request-row:last-child { border-bottom: 0; }
.request-row:hover { background: #fafafa; }
.request-row.selected { background: #fbfbfb; box-shadow: inset 3px 0 0 #2a2a2c; }
.request-title { color: #252529; font-size: 14px; font-weight: 720; line-height: 1.25; }
.request-meta { margin-top: 5px; color: #888891; font-size: 12px; }
.status { display: inline-flex; align-items: center; width: max-content; min-height: 27px; gap: 5px; padding: 5px 8px; border-radius: 6px; font-size: 12px; font-weight: 700; line-height: 1; white-space: nowrap; }
.status .icon { width: 14px; height: 14px; flex-basis: 14px; stroke-width: 2.2; }
.status.progress, .wait { color: var(--orange); background: var(--orange-pale); }
.status.approved, .success { color: var(--green); background: var(--green-pale); }
.status.draft { color: var(--purple); background: var(--purple-pale); }
.status.error, .error { color: var(--red); background: var(--red-pale); }

.summary-card { min-height: 500px; padding: 28px; }
.summary-card h2 { margin: 6px 0 21px; font-size: 20px; letter-spacing: -.035em; line-height: 1.23; }
.summary-card dl { margin: 14px 0 0; }
.summary-card dl > div { display: flex; justify-content: space-between; gap: 11px; padding: 13px 0; border-top: 1px solid var(--line); }
.summary-card dt { color: #777780; font-size: 13px; }
.summary-card dd { margin: 0; font-size: 13px; font-weight: 700; text-align: right; }
.timeline { margin-top: 26px; }
.timeline h3 { margin: 0 0 17px; font-size: 11px; letter-spacing: .09em; }
.timeline-step { display: flex; align-items: center; gap: 10px; margin: 13px 0; color: #92929a; font-size: 13px; }
.timeline-step i { display: block; width: 10px; height: 10px; background: #d9d9df; border-radius: 50%; }
.timeline-step.done i { background: #17a16a; }
.timeline-step.current { color: #27272c; font-weight: 700; }
.timeline-step.current i { background: var(--orange); box-shadow: 0 0 0 4px var(--orange-pale); }

.approval-card { width: 100%; max-width: none; padding: 28px; }
#approval-list { display: grid; width: 100%; gap: 14px; }
.approval-card h2 { margin: 16px 0 10px; font-size: 24px; letter-spacing: -.04em; }
.approval-card p { color: var(--muted); line-height: 1.5; }
.approval-actions { display: flex; gap: 10px; margin-top: 24px; }
.supplier-grid, .insight-grid { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 18px; }
.supplier-grid article { padding: 24px; }
.supplier-grid h2 { margin: 15px 0 4px; font-size: 20px; letter-spacing: -.03em; }
.supplier-grid p { margin: 0; color: var(--muted); }
.supplier-logo { display: grid; width: 45px; height: 45px; place-items: center; color: white; border-radius: 9px; font-size: 19px; font-weight: 800; }
.blue { background: #1976be; }.orange { background: #1a1a1c; }
.supplier-grid hr { margin: 21px 0; border: 0; border-top: 1px solid var(--line); }
.supplier-grid dl { display: flex; justify-content: space-between; margin: 0; }
.supplier-grid dt { color: var(--muted); font-size: 12px; }.supplier-grid dd { margin: 5px 0 0; font-weight: 750; }
.table-toolbar { display: flex; align-items: center; gap: 10px; margin: -8px 0 15px; }.table-search { display: flex; align-items: center; width: min(100%, 370px); height: 44px; gap: 8px; padding: 0 12px; background: white; border: 1px solid var(--line); border-radius: 7px; color: #8b8b92; }.table-search input { width: 100%; border: 0; outline: 0; }.table-toolbar select { height: 44px; padding: 0 10px; background: white; border: 1px solid var(--line); border-radius: 7px; }.supplier-table { overflow: hidden; }.supplier-table-head, .supplier-table-row { display: grid; grid-template-columns: minmax(240px, 1.6fr) minmax(150px, 1fr) 100px 150px 110px; gap: 16px; align-items: center; }.supplier-table-head { padding: 14px 22px; color: #8d8d94; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 760; letter-spacing: .095em; }.supplier-table-row { min-height: 64px; padding: 14px 22px; color: var(--ink); background: white; border-bottom: 1px solid var(--line); font-size: 13px; }.supplier-table-row:hover { background: #fafafa; }.supplier-table-row:last-child { border-bottom: 0; }.supplier-table-row > b:first-child { font-size: 14px; }.supplier-table-row > span { color: var(--muted); }
.insight-grid { grid-template-columns: repeat(3, minmax(180px, 1fr)); }
.metric { padding: 22px; }.metric span { display: block; color: var(--muted); font-size: 13px; }.metric b { display: block; margin: 16px 0 7px; font-size: 26px; letter-spacing: -.045em; }.metric small { color: var(--muted); }
.attention { display: flex; align-items: center; gap: 15px; margin-top: 18px; padding: 20px; background: #fff8d8; border-color: #f4e3a2; }
.attention > .icon { width: 22px; height: 22px; flex-basis: 22px; color: #b68008; stroke-width: 2; }.attention b { display: block; }.attention p { margin: 5px 0 0; color: #75642b; font-size: 13px; }
.link-button { margin-left: auto; padding: 0; color: var(--purple); background: transparent; }

.log-card { overflow: hidden; }
.log-card .list-header, .log-card .log-row { display: grid; grid-template-columns: minmax(360px, 1fr) 130px 150px 185px; gap: 10px; align-items: center; }
.log-row { padding: 17px 20px; border-bottom: 1px solid var(--line); font-size: 14px; }.log-row:last-child { border: 0; }.log-row .status { justify-self: start; }
.data-card { overflow: hidden; }
.platform-org-head, .platform-org-row { display: grid; grid-template-columns: minmax(280px,1.5fr) 120px 120px 160px; gap: 16px; align-items: center; }.platform-org-head { padding: 14px 22px; color: #8d8d94; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 760; letter-spacing: .095em; }.platform-org-row { padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: 13px; }.platform-org-row:last-child { border-bottom: 0; }.platform-org-row small { display: block; margin-top: 5px; color: var(--muted); }.platform-user-list { display: grid; gap: 3px; margin-top: 10px; }.platform-user-list span { color: var(--muted); font-size: 12px; }
.data-header, .data-row { display: grid; grid-template-columns: minmax(280px, 1.8fr) minmax(150px, .8fr) 140px; gap: 16px; align-items: center; }
.data-header { padding: 14px 22px; color: #8d8d94; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 760; letter-spacing: .095em; }
.data-row { padding: 17px 22px; border-bottom: 1px solid var(--line); font-size: 14px; }.data-row:last-child { border-bottom: 0; }.data-row b, .data-row small { display: block; }.data-row small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.catalog-row { grid-template-columns: 130px minmax(250px, 1.6fr) minmax(150px, .8fr) 140px; }.supplier-table-row { text-align: left; }
.route-list { display: grid; width: 100%; gap: 14px; }.route-card { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(390px, 1.3fr) auto; align-items: center; width: 100%; gap: 28px; padding: 24px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 11px; }.route-card h2 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.025em; }.route-actions { display: grid; justify-items: end; gap: 12px; }.route-actions .secondary { height: var(--control-height); }.route-flow { display: flex; align-items: center; min-width: 0; gap: 8px; overflow-x: auto; padding: 5px 0; }.route-node { display: inline-flex; align-items: center; min-height: 42px; padding: 0 13px; color: #38383e; background: #f6f6f8; border: 1px solid #e3e3e7; border-radius: 7px; font-size: 13px; font-weight: 700; white-space: nowrap; }.route-arrow { color: #8a8a92; font-size: 18px; }
.card-action { width: 100%; margin-top: 22px; text-align: center; }.detail-description { margin: 16px 0 24px; line-height: 1.5; }.detail-grid { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(320px, 1.2fr); gap: 28px; }.detail-grid h3, .audit-block h3 { margin: 0 0 12px; font-size: 13px; }.detail-list { margin: 0 0 26px; }.detail-list > div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }.detail-list dt { color: var(--muted); }.detail-list dd { margin: 0; font-weight: 700; text-align: right; }.quote-list { display: grid; gap: 8px; margin-bottom: 18px; }.quote-row { display: grid; grid-template-columns: minmax(120px, 1fr) 100px 84px auto; align-items: center; gap: 10px; padding: 11px; background: #fafafa; border: 1px solid var(--line); border-radius: 7px; font-size: 12px; }.quote-row b, .quote-row small { display: block; }.quote-row small { margin-top: 4px; color: var(--muted); }.quote-row .secondary { padding: 7px 8px; font-size: 12px; }.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px; background: #f7f7f8; border-radius: 9px; }.quote-form h3 { grid-column: 1 / -1; margin-bottom: 0; }.quote-form label { display: grid; gap: 6px; color: #55555c; font-size: 12px; font-weight: 700; }.quote-form input, .quote-form select { width: 100%; padding: 9px; border: 1px solid #dedee3; border-radius: 6px; }.quote-form .primary { grid-column: 1 / -1; text-align: center; }.audit-block { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); }.audit-block p { margin: 7px 0; color: var(--muted); font-size: 12px; }
.file-list { display: grid; gap: 7px; margin-bottom: 24px; }.file-link { display: block; color: var(--purple); font-size: 12px; text-decoration: none; }.file-link:hover { text-decoration: underline; }
.supplier-detail { padding: 28px; }.supplier-detail > h3 { margin: 25px 0 13px; font-size: 13px; }.supplier-metrics { grid-template-columns: repeat(3, minmax(140px, 1fr)); margin-top: 24px; }
dialog:has(#request-card-content) { width: min(1220px, calc(100% - 36px)); max-width: 1220px; max-height: calc(100dvh - 32px); overflow: auto; }

dialog { width: calc(100% - 36px); max-width: 570px; padding: 0; border: 0; border-radius: 12px; box-shadow: 0 24px 80px #17172155; } dialog:has(#route-form), dialog:has(#request-form), dialog:has(#request-edit-form) { max-width: 820px; max-height: calc(100dvh - 32px); overflow: auto; } dialog::backdrop { background: #15151bb2; }
form { padding: 28px; }.dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; }.dialog-heading h2 { margin: 0; font-size: 24px; letter-spacing: -.04em; }.icon-button { display: grid; width: 31px; height: 31px; place-items: center; background: #f0f0f2; border-radius: 5px; font-size: 21px; }
form > label { display: grid; gap: 8px; margin-top: 22px; font-size: 13px; font-weight: 700; } textarea, select, input[type=date], input[type=email], input[type=password] { padding: 11px; background: white; border: 1px solid #dedee3; border-radius: 6px; outline-color: var(--purple); } textarea { height: 105px; resize: vertical; }
.ai-hint { display: flex; gap: 9px; margin-top: 12px; padding: 12px; color: #4941a0; background: #eceaff; border-radius: 8px; }.ai-hint > .icon { margin-top: 1px; color: #5546bf; }.ai-hint p { margin: 0; font-size: 12px; line-height: 1.45; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.form-grid label { display: grid; gap: 8px; margin-top: 18px; font-size: 13px; font-weight: 700; } menu { display: flex; justify-content: flex-end; gap: 8px; margin: 26px 0 0; padding: 0; }
.empty-state { padding: 30px 22px; color: var(--muted); line-height: 1.5; }.login-copy { margin-top: 14px; }.form-error { margin: 14px 0 0; color: var(--red); font-size: 13px; }
.field-invalid { border-color: var(--red) !important; box-shadow: 0 0 0 3px #ffe8e8 !important; }

/* Единая сетка контролов во всех карточках и диалогах. */
form input:not([type=file]), form select, .quote-form input:not([type=file]), .quote-form select { height: var(--control-height); min-height: var(--control-height); padding: 0 12px; border-radius: 7px; }
form input[type=checkbox] { width: 16px; height: 16px; min-height: 16px; padding: 0; accent-color: var(--purple); }
form input[type=file], .quote-form input[type=file] { min-height: var(--control-height); height: var(--control-height); padding: 7px 10px; border-radius: 7px; }
.quote-form { gap: 14px 18px; padding: 22px; }
.quote-form label { gap: 7px; }
.quote-form .primary { min-height: var(--control-height); }
.contract-form { margin-top: 14px; }
.form-grid { gap: 16px; }
.form-grid label > input, .form-grid label > select { width: 100%; height: var(--control-height); }
.route-preview { display: grid; gap: 9px; margin-top: 20px; padding: 15px; background: #f7f7f8; border: 1px solid #e4e4e8; border-radius: 9px; }.route-preview > span { color: #71717a; font-size: 12px; font-weight: 700; }.route-preview .route-flow { min-height: 42px; }
.item-editor { margin-top: 24px; padding: 18px; overflow: hidden; background: #f7f7f8; border: 1px solid #e4e4e8; border-radius: 9px; }.item-editor-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }.item-editor h3 { margin: 0 0 4px; font-size: 15px; }.item-editor p { margin: 0; color: var(--muted); font-size: 12px; }.item-editor .secondary { height: var(--control-height); white-space: nowrap; }.item-head, .item-row { display: grid; grid-template-columns: minmax(160px, 1fr) 82px 90px 116px 34px; gap: 8px; align-items: center; min-width: 0; }.item-head { padding: 0 0 7px; color: #8d8d94; font-size: 10px; font-weight: 760; letter-spacing: .07em; }.item-row { margin-top: 9px; }.item-row input, .item-row select { width: 100%; height: var(--control-height); min-width: 0; padding: 0 10px; background: white; border: 1px solid #dedee3; border-radius: 7px; }.item-row .icon-button { width: 34px; height: 34px; font-size: 18px; }.detail-items { display: grid; gap: 7px; margin: 0 0 24px; }.detail-items > div { display: grid; gap: 3px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 12px; }.detail-items span { color: var(--muted); }
.rfq-form, .rfq-history { display: grid; gap: 10px; margin: 0 0 22px; padding: 16px; background: #f7f7f8; border: 1px solid #e4e4e8; border-radius: 9px; }.rfq-form h3, .rfq-history + h3 { margin: 0; }.rfq-form > p { margin: 0; font-size: 12px; line-height: 1.45; }.rfq-form > label { display: grid; gap: 6px; color: #55555c; font-size: 12px; font-weight: 700; }.rfq-form input[type=date] { width: 100%; height: var(--control-height); padding: 0 12px; background: white; border: 1px solid #dedee3; border-radius: 7px; }.rfq-suppliers { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }.rfq-suppliers label { display: flex; align-items: center; gap: 8px; min-width: 0; padding: 8px; background: white; border: 1px solid var(--line); border-radius: 7px; font-size: 12px; }.rfq-history > div { display: grid; gap: 4px; padding-bottom: 9px; border-bottom: 1px solid var(--line); font-size: 12px; }.rfq-history span { color: var(--muted); }
.procurement-card-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; margin: 22px -28px -28px; border-top: 1px solid var(--line); }.procurement-card-main { min-width: 0; padding: 0 28px 28px; }.request-summary-aside { padding: 26px; border-left: 1px solid var(--line); background: #fff; }.summary-aside-tabs { display: flex; gap: 30px; padding-bottom: 15px; color: #73737c; border-bottom: 1px solid var(--line); font-size: 13px; }.summary-aside-tabs b { position: relative; color: var(--purple); }.summary-aside-tabs b::after { position: absolute; bottom: -16px; left: 0; width: 100%; height: 3px; background: var(--purple); content: ""; }.request-summary-aside dl { margin: 22px 0 0; }.request-summary-aside dl > div { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 12px; }.request-summary-aside dt { color: var(--muted); }.request-summary-aside dd { margin: 0; font-weight: 700; text-align: right; }.card-tabs { display: flex; gap: 26px; overflow-x: auto; border-bottom: 1px solid var(--line); }.card-tab { position: relative; min-height: 56px; padding: 0; color: #73737c; background: transparent; font-size: 13px; font-weight: 650; white-space: nowrap; }.card-tab.active { color: #202024; }.card-tab.active::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: #202024; content: ""; }.card-panel { display: none; padding-top: 26px; }.card-panel.active { display: block; }.card-panel > h3 { margin: 0 0 14px; font-size: 16px; }.picker-selected { padding: 8px 10px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 7px; font-size: 12px; }.picker-list { display: grid; max-height: 240px; overflow: auto; background: white; border: 1px solid var(--line); border-radius: 7px; }.picker-list label { display: grid; grid-template-columns: 16px minmax(0,1fr) auto; align-items: center; gap: 9px; padding: 10px; border-bottom: 1px solid var(--line); font-size: 12px; }.picker-list label:last-child { border-bottom: 0; }.picker-list small { color: var(--muted); }.quote-comparison { overflow: auto; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 9px; }.quote-comparison-head, .quote-comparison-row { display: grid; grid-template-columns: minmax(150px,1.2fr) 110px 90px minmax(140px,1fr) 90px; gap: 12px; align-items: center; min-width: 650px; padding: 13px 16px; font-size: 12px; }.quote-comparison-head { color: #8d8d94; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 760; letter-spacing: .08em; }.quote-comparison-row { border-bottom: 1px solid var(--line); }.quote-comparison-row:last-child { border-bottom: 0; }.quote-comparison-row.selected { background: #f2fbf6; }

@media (max-width: 980px) { .request-grid { grid-template-columns: 1fr; overflow-x: auto; }.list-card { min-width: 650px; }.summary-card { min-height: auto; }.view { padding: 28px 26px; } }
@media (max-width: 760px) { .procurement-card-layout { grid-template-columns: 1fr; margin-right: -20px; margin-left: -20px; }.procurement-card-main { padding: 0 20px 20px; }.request-summary-aside { border-top: 1px solid var(--line); border-left: 0; }.card-tabs { gap: 18px; }.request-summary-aside dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; } }
@media (max-width: 640px) { .app-shell { grid-template-columns: 60px minmax(0, 1fr); }.sidebar { padding: 15px 7px; }.brand { margin-bottom: 27px; }.topbar { flex-wrap: wrap; height: auto; min-height: 72px; gap: 9px; padding: 12px 14px; }.search { order: 3; flex-basis: 100%; }.workspace { font-size: 12px; }.primary { padding: 10px; font-size: 13px; }.view { padding: 26px 16px; }.page-heading { display: block; }.heading-metrics { margin-top: 18px; }.insight-grid, .supplier-grid, .detail-grid { grid-template-columns: 1fr; }.attention { align-items: flex-start; }.link-button { margin: 0; }.log-card { overflow: auto; }.log-card > * { min-width: 650px; }.approval-actions, .form-grid { grid-template-columns: 1fr; flex-direction: column; }.route-card { grid-template-columns: 1fr; gap: 14px; }.route-actions { justify-items: start; }.quote-row { grid-template-columns: 1fr 1fr; }.quote-form { grid-template-columns: 1fr; }.item-head { display: none; }.item-row { grid-template-columns: 1fr 76px 74px 34px; }.item-row select:first-child { grid-column: 1 / -1; }.item-row input:nth-child(4) { display: block; } }
