:root {
    --nv-bg: #f5f7fa;
    --nv-surface: #ffffff;
    --nv-sidebar: #17212b;
    --nv-sidebar-muted: #94a3b2;
    --nv-text: #18212b;
    --nv-muted: #66717d;
    --nv-border: #e1e6eb;
    --nv-accent: #246b5f;
    --nv-accent-dark: #1b544b;
    --nv-accent-soft: #e8f3f0;
    --nv-danger: #b42318;
    --nv-danger-bg: #fef3f2;
    --nv-warning: #9a6700;
    --nv-warning-bg: #fff8e6;
    --nv-shadow: 0 18px 50px rgba(20, 31, 43, .10);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--nv-text); background: var(--nv-bg); }
a { color: var(--nv-accent); }

/* Login */
.nv-buha-login-page { min-height: 100vh; background: radial-gradient(circle at 20% 0%, #edf5f3 0, #f5f7fa 38%, #eef1f4 100%); }
.nv-login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 28px; }
.nv-login-card { width: min(440px, 100%); background: var(--nv-surface); border: 1px solid var(--nv-border); border-radius: 18px; padding: 38px; box-shadow: var(--nv-shadow); }
.nv-brand-mark { width: 48px; height: 48px; border-radius: 13px; background: var(--nv-accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 24px; margin-bottom: 18px; }
.nv-brand { font-size: 13px; font-weight: 800; letter-spacing: .16em; color: var(--nv-accent); }
.nv-login-card h1 { margin: 7px 0 8px; font-size: 30px; letter-spacing: -.03em; }
.nv-login-subtitle { margin: 0 0 28px; color: var(--nv-muted); line-height: 1.55; }
.nv-login-card label:not(.nv-checkbox) { display: block; margin: 17px 0 7px; font-size: 14px; font-weight: 650; }
.nv-login-card input[type="text"], .nv-login-card input[type="password"] { width: 100%; height: 48px; padding: 0 13px; border: 1px solid #cfd6dd; border-radius: 9px; font: inherit; outline: none; background: #fff; }
.nv-login-card input[type="text"]:focus, .nv-login-card input[type="password"]:focus { border-color: var(--nv-accent); box-shadow: 0 0 0 3px rgba(36, 107, 95, .12); }
.nv-login-options { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin: 16px 0 22px; font-size: 13px; }
.nv-checkbox { display: flex; align-items: center; gap: 7px; color: var(--nv-muted); }
.nv-primary-button { width: 100%; border: 0; background: var(--nv-accent); color: #fff; min-height: 48px; border-radius: 9px; font: inherit; font-weight: 750; cursor: pointer; }
.nv-primary-button:hover { background: var(--nv-accent-dark); }
.nv-button-link { display: grid; place-items: center; text-decoration: none; margin-top: 20px; }
.nv-login-footer { border-top: 1px solid var(--nv-border); margin-top: 28px; padding-top: 20px; font-size: 12px; color: #8a949f; text-align: center; }
.nv-alert { border-radius: 9px; padding: 12px 14px; font-size: 14px; line-height: 1.5; }
.nv-alert-error { background: var(--nv-danger-bg); color: var(--nv-danger); border: 1px solid #fecdca; }
.nv-alert-warning { background: var(--nv-warning-bg); color: #704d00; border: 1px solid #efd78f; margin-bottom: 20px; }

/* App */
.nv-buha-app-page { min-height: 100vh; }
.nv-app { min-height: 100vh; display: grid; grid-template-columns: 245px minmax(0, 1fr); }
.nv-sidebar { position: sticky; top: 0; height: 100vh; background: var(--nv-sidebar); color: #fff; display: flex; flex-direction: column; padding: 20px 14px; }
.nv-app-brand { display: flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; padding: 4px 8px 24px; }
.nv-app-brand-mark { width: 36px; height: 36px; border-radius: 9px; background: #2f8677; display: grid; place-items: center; font-weight: 850; }
.nv-app-brand strong, .nv-app-brand small { display: block; }
.nv-app-brand strong { font-size: 13px; letter-spacing: .12em; }
.nv-app-brand small { font-size: 10px; margin-top: 2px; color: #9fb0bd; letter-spacing: .08em; }
.nv-nav { display: grid; gap: 4px; }
.nv-nav a, .nv-sidebar-bottom a { display: flex; align-items: center; min-height: 42px; gap: 11px; padding: 0 11px; border-radius: 8px; text-decoration: none; color: #d8e0e6; font-size: 14px; }
.nv-nav a > span, .nv-sidebar-bottom a > span { width: 21px; text-align: center; color: #9fb0bd; }
.nv-nav a.is-active { background: rgba(255,255,255,.10); color: #fff; font-weight: 650; }
.nv-nav a.is-disabled { color: #8d9aa6; cursor: default; }
.nv-nav a em { margin-left: auto; font-size: 9px; font-style: normal; color: #758593; text-transform: uppercase; letter-spacing: .06em; }
.nv-sidebar-bottom { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.nv-sidebar-bottom a:hover { background: rgba(255,255,255,.08); }
.nv-main { min-width: 0; }
.nv-topbar { height: 78px; background: #fff; border-bottom: 1px solid var(--nv-border); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 32px; }
.nv-topbar h1 { margin: 0; font-size: 22px; letter-spacing: -.02em; }
.nv-topbar p { margin: 3px 0 0; font-size: 12px; color: var(--nv-muted); }
.nv-user-menu { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.nv-user-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--nv-accent-soft); color: var(--nv-accent-dark); display: grid; place-items: center; font-weight: 800; }
.nv-user-name { font-weight: 650; }
.nv-logout { margin-left: 8px; color: var(--nv-muted); text-decoration: none; }
.nv-logout:hover { color: var(--nv-text); }
.nv-content { padding: 30px 32px 60px; max-width: 1450px; }
.nv-welcome { background: #fff; border: 1px solid var(--nv-border); border-radius: 14px; padding: 26px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.nv-kicker { display: block; color: var(--nv-accent); text-transform: uppercase; font-weight: 800; font-size: 11px; letter-spacing: .09em; margin-bottom: 7px; }
.nv-welcome h2 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.025em; }
.nv-welcome p { margin: 0; color: var(--nv-muted); max-width: 720px; line-height: 1.55; }
.nv-health { min-width: 218px; border-radius: 10px; padding: 13px 15px; display: flex; align-items: center; gap: 10px; }
.nv-health.is-ok { background: #eef8f5; }
.nv-health.is-warning { background: var(--nv-warning-bg); }
.nv-health-dot { width: 9px; height: 9px; background: #1c8c70; border-radius: 50%; flex: 0 0 auto; }
.nv-health.is-warning .nv-health-dot { background: #b88000; }
.nv-health strong, .nv-health small { display: block; }
.nv-health strong { font-size: 13px; }
.nv-health small { margin-top: 3px; color: var(--nv-muted); font-size: 11px; }
.nv-module-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.nv-module-card { position: relative; min-height: 132px; background: #fff; border: 1px solid var(--nv-border); border-radius: 12px; padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.nv-module-icon { width: 38px; height: 38px; border-radius: 9px; background: #f0f4f5; display: grid; place-items: center; font-size: 18px; font-weight: 700; color: var(--nv-accent); flex: 0 0 auto; }
.nv-module-card h3 { margin: 2px 0 5px; font-size: 16px; }
.nv-module-card p { margin: 0; color: var(--nv-muted); font-size: 13px; line-height: 1.45; padding-right: 35px; }
.nv-badge { position: absolute; right: 14px; top: 14px; font-size: 9px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; color: #7e8893; background: #f1f3f5; border-radius: 999px; padding: 4px 7px; }

@media (max-width: 1050px) {
    .nv-app { grid-template-columns: 205px minmax(0, 1fr); }
    .nv-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .nv-app { display: block; }
    .nv-sidebar { position: static; height: auto; }
    .nv-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nv-sidebar-bottom { margin-top: 14px; }
    .nv-topbar { height: auto; min-height: 74px; padding: 16px 18px; }
    .nv-user-name { display: none; }
    .nv-content { padding: 18px; }
    .nv-welcome { align-items: flex-start; flex-direction: column; }
    .nv-health { min-width: 0; width: 100%; }
    .nv-module-grid { grid-template-columns: 1fr; }
}

/* Shared working modules */
.nv-page-alert { margin: 0 0 18px; }
.nv-alert-success { background: #eef8f5; color: #176b58; border: 1px solid #b9e2d7; }
.nv-module-link { text-decoration: none; color: inherit; transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.nv-module-link:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(20,31,43,.07); border-color: #ccd7d4; }
.nv-badge.is-live { background: var(--nv-accent-soft); color: var(--nv-accent-dark); }

.nv-tabs { display: flex; gap: 4px; margin-bottom: 18px; border-bottom: 1px solid var(--nv-border); }
.nv-tabs a { padding: 11px 14px; text-decoration: none; color: var(--nv-muted); font-size: 14px; font-weight: 650; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.nv-tabs a:hover { color: var(--nv-text); }
.nv-tabs a.is-active { color: var(--nv-accent-dark); border-bottom-color: var(--nv-accent); }

.nv-panel { background: var(--nv-surface); border: 1px solid var(--nv-border); border-radius: 13px; overflow: hidden; margin-bottom: 18px; }
.nv-panel-head { min-height: 72px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--nv-border); }
.nv-panel-head h2 { margin: 0; font-size: 18px; letter-spacing: -.015em; }
.nv-panel-head p { margin: 4px 0 0; color: var(--nv-muted); font-size: 12px; }
.nv-form-panel { overflow: visible; }
.nv-side-form { align-self: start; }

.nv-button { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 13px; border-radius: 8px; border: 1px solid #cfd6dd; background: #fff; color: var(--nv-text); text-decoration: none; font: inherit; font-size: 13px; font-weight: 650; cursor: pointer; white-space: nowrap; }
.nv-button:hover { border-color: #aeb9c2; background: #fafbfc; }
.nv-button-primary { border-color: var(--nv-accent); background: var(--nv-accent); color: #fff; }
.nv-button-primary:hover { border-color: var(--nv-accent-dark); background: var(--nv-accent-dark); }
.nv-button-ghost { background: transparent; }

.nv-filters { padding: 16px 20px; display: flex; align-items: end; gap: 12px; background: #fafbfc; border-bottom: 1px solid var(--nv-border); }
.nv-field { min-width: 150px; }
.nv-field-grow { flex: 1 1 280px; }
.nv-field label { display: block; font-size: 11px; font-weight: 750; color: #596571; margin-bottom: 6px; }
.nv-field input, .nv-field select, .nv-field textarea { width: 100%; border: 1px solid #cfd6dd; border-radius: 8px; background: #fff; color: var(--nv-text); font: inherit; font-size: 14px; outline: none; }
.nv-field input, .nv-field select { height: 40px; padding: 0 10px; }
.nv-field textarea { min-height: 84px; padding: 10px; resize: vertical; }
.nv-field input:focus, .nv-field select:focus, .nv-field textarea:focus { border-color: var(--nv-accent); box-shadow: 0 0 0 3px rgba(36,107,95,.10); }
.nv-filter-actions { display: flex; gap: 7px; }

.nv-table-wrap { width: 100%; overflow-x: auto; }
.nv-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nv-table th { padding: 10px 12px; text-align: left; color: #64717d; background: #fafbfc; border-bottom: 1px solid var(--nv-border); font-size: 10px; text-transform: uppercase; letter-spacing: .045em; white-space: nowrap; }
.nv-table td { padding: 12px; border-bottom: 1px solid #edf0f2; vertical-align: middle; }
.nv-table tbody tr:last-child td { border-bottom: 0; }
.nv-table tbody tr:hover { background: #fbfcfc; }
.nv-table .is-number { text-align: right; white-space: nowrap; }
.nv-table code { font-size: 12px; background: #f2f4f5; padding: 3px 5px; border-radius: 4px; color: #46515c; }
.nv-cell-sub { display: block; margin-top: 4px; color: #8a949e; font-size: 10px; }
.nv-empty { text-align: center; color: var(--nv-muted); padding: 35px !important; }
.is-muted-row { opacity: .62; }
.nv-negative { color: var(--nv-danger); font-weight: 750; }
.nv-status { display: inline-flex; align-items: center; min-height: 23px; padding: 0 8px; border-radius: 999px; background: #f0f2f4; color: #687480; font-size: 10px; font-weight: 750; white-space: nowrap; }
.nv-status.is-active { background: var(--nv-accent-soft); color: var(--nv-accent-dark); }
.nv-actions-cell { text-align: right; white-space: nowrap; }
.nv-link-action { border: 0; padding: 3px 5px; background: transparent; color: var(--nv-accent); text-decoration: none; font: inherit; font-size: 12px; cursor: pointer; }
.nv-link-action:hover { text-decoration: underline; }
.nv-inline-form { display: inline; margin: 0; padding: 0; }

.nv-edit-form { padding: 20px; }
.nv-form-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.nv-span-2 { grid-column: span 2; }
.nv-checkline { display: flex; align-items: center; gap: 8px; min-height: 38px; color: #4c5863; font-size: 13px; }
.nv-checkline input { width: 16px; height: 16px; accent-color: var(--nv-accent); }
.nv-form-actions { padding-top: 18px; margin-top: 18px; border-top: 1px solid var(--nv-border); display: flex; gap: 8px; }
.nv-input-suffix { position: relative; }
.nv-input-suffix input { padding-right: 36px; }
.nv-input-suffix span { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--nv-muted); font-size: 13px; }

.nv-two-col { display: grid; grid-template-columns: minmax(0,2fr) minmax(300px, .8fr); gap: 18px; align-items: start; }
.nv-side-form .nv-edit-form { padding-top: 18px; }
.nv-side-form .nv-field { margin-bottom: 14px; }
.nv-side-form .nv-form-actions { margin-top: 8px; }

.nv-pagination { padding: 14px 20px; border-top: 1px solid var(--nv-border); display: flex; justify-content: flex-end; align-items: center; gap: 14px; font-size: 12px; }
.nv-pagination a { text-decoration: none; font-weight: 650; }
.nv-pagination span { color: var(--nv-muted); }

@media (max-width: 1180px) {
    .nv-filters { flex-wrap: wrap; }
    .nv-filter-actions { width: 100%; }
    .nv-form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .nv-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .nv-panel-head { align-items: flex-start; flex-direction: column; }
    .nv-filters { display: grid; grid-template-columns: 1fr; }
    .nv-field { min-width: 0; }
    .nv-filter-actions { width: auto; }
    .nv-form-grid { grid-template-columns: 1fr; }
    .nv-span-2 { grid-column: span 1; }
    .nv-tabs { overflow-x: auto; }
}

/* Accounting + opening inventory */
.nv-help { display:block; margin-top:6px; color:var(--nv-muted); font-size:11px; line-height:1.45; }
.nv-settings-grid { align-items:start; }
.nv-entry-table select, .nv-entry-table input { width:100%; min-width:130px; height:38px; border:1px solid #cfd6dd; border-radius:7px; padding:0 9px; background:#fff; font:inherit; font-size:13px; }
.nv-entry-table select:focus, .nv-entry-table input:focus { outline:none; border-color:var(--nv-accent); box-shadow:0 0 0 3px rgba(36,107,95,.10); }
.nv-entry-footer { padding:13px 20px; display:flex; align-items:center; gap:14px; border-top:1px solid var(--nv-border); background:#fafbfc; }
.nv-document-actions { padding-left:20px; padding-right:20px; }
.nv-button-success { border-color:#1c8c70; background:#1c8c70; color:#fff; }
.nv-button-success:hover { border-color:#176f5b; background:#176f5b; }
.nv-status.is-warning { background:#fff4d8; color:#916800; }
.nv-danger-zone { padding:0 20px 20px; text-align:right; }
.nv-link-danger { border:0; background:transparent; color:#ad3d3d; text-decoration:underline; cursor:pointer; font:inherit; font-size:12px; }
.nv-document-note { padding:16px 20px; border-top:1px solid var(--nv-border); color:#56616c; font-size:13px; }
.nv-table tfoot th { padding:12px; border-top:2px solid var(--nv-border); background:#fafbfc; }
@media (max-width:760px){.nv-entry-footer{align-items:flex-start;flex-direction:column}.nv-document-actions{padding-left:0;padding-right:0;margin-left:20px;margin-right:20px}.nv-entry-table{min-width:760px}}

/* Partners + purchases */
.nv-form-panel-wide { overflow: visible; }
.nv-check-row { display:flex; flex-wrap:wrap; gap:18px; padding:0 20px 4px; }
.nv-num { text-align:right !important; white-space:nowrap; }
.nv-button-danger { border-color:#d9b8b8; color:#9f3434; background:#fff; }
.nv-button-danger:hover { border-color:#c98f8f; background:#fff7f7; }
.nv-purchase-lines-head { padding:18px 20px 10px; display:flex; justify-content:space-between; align-items:center; gap:12px; border-top:1px solid var(--nv-border); margin-top:4px; }
.nv-purchase-lines-head h3 { margin:0; font-size:15px; }
.nv-lines-table { min-width:1180px; }
.nv-lines-table td { padding:8px; vertical-align:top; }
.nv-lines-table select, .nv-lines-table input { width:100%; min-width:90px; height:36px; border:1px solid #cfd6dd; border-radius:7px; padding:0 8px; background:#fff; font:inherit; font-size:12px; }
.nv-lines-table .nv-product-select { min-width:220px; margin-bottom:6px; }
.nv-lines-table .nv-line-description { min-width:220px; }
.nv-lines-table .nv-expense-select { min-width:190px; }
.nv-lines-table .nv-warehouse-select { min-width:135px; }
.nv-line-remove { width:30px; height:30px; border:0; border-radius:6px; background:#f3f4f5; color:#9b3c3c; cursor:pointer; font-size:20px; line-height:1; }
.nv-line-remove:hover { background:#fdeeee; }
.nv-document-actions { padding:16px 20px 20px; display:flex; align-items:center; justify-content:space-between; gap:12px; border-top:1px solid var(--nv-border); background:#fafbfc; }
.nv-document-actions form { margin:0; }
.nv-doc-summary { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:1px; background:var(--nv-border); border-bottom:1px solid var(--nv-border); }
.nv-doc-summary > div { background:#fff; padding:16px 18px; }
.nv-doc-summary small { display:block; color:var(--nv-muted); font-size:10px; text-transform:uppercase; letter-spacing:.04em; margin-bottom:5px; }
.nv-doc-summary strong { font-size:14px; }
@media (max-width:900px){.nv-doc-summary{grid-template-columns:repeat(2,minmax(0,1fr))}.nv-document-actions{align-items:flex-start;flex-direction:column}}

/* v0.5.0 – greitas SKU pajamavimas ir FIFO ekranas */
.nv-product-search { position:relative; min-width:260px; margin-bottom:6px; }
.nv-product-lookup { padding-right:28px !important; }
.nv-product-lookup.is-selected { border-color:var(--nv-accent) !important; background:#fbfffe !important; }
.nv-product-suggestions { position:absolute; z-index:50; left:0; right:0; top:calc(100% + 4px); background:#fff; border:1px solid #ccd5dc; border-radius:9px; box-shadow:0 12px 32px rgba(24,38,51,.15); max-height:310px; overflow:auto; }
.nv-product-suggestion { width:100%; border:0; border-bottom:1px solid #edf0f2; background:#fff; padding:9px 10px; text-align:left; display:flex; justify-content:space-between; gap:10px; align-items:center; cursor:pointer; font:inherit; }
.nv-product-suggestion:last-child { border-bottom:0; }
.nv-product-suggestion:hover, .nv-product-suggestion.is-active { background:#f0f7f5; }
.nv-product-suggestion > span { min-width:0; display:flex; align-items:center; gap:8px; }
.nv-product-suggestion code { min-width:72px; font-size:11px; color:#215d53; background:#edf7f4; padding:2px 5px; border-radius:4px; }
.nv-product-suggestion strong { font-size:12px; font-weight:650; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.nv-product-suggestion small, .nv-no-sku { color:#7b8792; font-size:10px; white-space:nowrap; }
.nv-product-no-results { padding:10px 11px; color:#7b5e18; background:#fffaf0; font-size:11px; }
.nv-inline-create { display:inline-block; margin-top:5px; font-size:10px; font-weight:650; color:var(--nv-accent-dark); text-decoration:none; }
.nv-inline-create:hover { text-decoration:underline; }
.nv-purchase-line.is-expense .nv-product-search,
.nv-purchase-line.is-expense .nv-inline-create,
.nv-purchase-line.is-acquisition .nv-product-search,
.nv-purchase-line.is-acquisition .nv-inline-create,
.nv-purchase-line:not(.is-expense) .nv-expense-select,
.nv-purchase-line.is-product .nv-account-na { display:none; }
.nv-purchase-line.is-expense .nv-line-description,
.nv-purchase-line.is-acquisition .nv-line-description { margin-top:0; min-width:260px; }
.nv-purchase-line .nv-line-na, .nv-purchase-line .nv-line-capitalized { display:none; color:#7b8792; font-size:11px; line-height:36px; white-space:nowrap; }
.nv-purchase-line:not(.is-expense):not(.is-acquisition) .nv-account-na { display:inline; }
.nv-purchase-line.is-expense .nv-warehouse-select,
.nv-purchase-line.is-acquisition .nv-warehouse-select { display:none; }
.nv-purchase-line.is-expense .nv-warehouse-na,
.nv-purchase-line.is-acquisition .nv-warehouse-na { display:inline; }
.nv-purchase-line.is-acquisition .nv-line-capitalized { display:inline; color:var(--nv-accent-dark); font-weight:650; }
.nv-purchase-lines-help { margin:8px 20px 0; padding:10px 12px; background:#f6faf9; border:1px solid #dcebe7; border-radius:8px; line-height:1.45; }
.nv-action-group { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }

.nv-metric-grid { display:grid; gap:14px; margin-bottom:18px; }
.nv-metric-grid-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.nv-metric { background:#fff; border:1px solid var(--nv-border); border-radius:11px; padding:16px 18px; box-shadow:0 1px 2px rgba(24,38,51,.03); }
.nv-metric small { display:block; color:#6d7882; font-size:10px; font-weight:750; text-transform:uppercase; letter-spacing:.04em; }
.nv-metric strong { display:block; margin:5px 0 2px; font-size:25px; line-height:1.1; color:var(--nv-text); }
.nv-metric span { color:#84909a; font-size:11px; }
.nv-empty-block { padding:24px; text-align:center; color:#78838d; }

@media (max-width:1050px) {
  .nv-metric-grid-4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:620px) {
  .nv-metric-grid-4 { grid-template-columns:1fr; }
}

/* v0.6.0 – pardavimo SF */
.nv-sales-lines { min-width: 980px; }
.nv-sales-lines .nv-product-search { min-width: 330px; margin-bottom: 0; }
.nv-sales-lines .nv-line-price { min-width: 120px; }
@media print { .nv-sidebar,.nv-topbar { display:none!important; } }

.nv-alert-info { background:#eef6fb; color:#24566f; border:1px solid #c8dfeb; margin-bottom:16px; }
