* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #1c2b3a; color: #e8edf3; }

/* ============ TOP NAV ============ */
.topnav { background: #c41230; color: white; display: flex; align-items: center; padding: 0 24px; height: 56px; position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.topnav .logo { font-weight: 800; font-size: 20px; font-style: italic; letter-spacing: -0.5px; margin-right: 32px; cursor: pointer; }
.topnav .nav-links { display: flex; gap: 4px; }
.topnav .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; transition: all 0.15s; cursor: pointer; }
.topnav .nav-links a:hover, .topnav .nav-links a.active { background: rgba(255,255,255,0.2); color: white; }
.topnav .right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.topnav .right .badge { background: #ff6b35; color: white; border-radius: 10px; padding: 2px 8px; font-size: 11px; font-weight: 700; }
.topnav .avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; cursor: pointer; }
.topnav .notif-wrap { position: relative; cursor: pointer; }
.topnav .notif-wrap .badge { position: absolute; top: -6px; right: -8px; }

/* ============ PAGE LAYOUT ============ */
.page { display: none; margin-top: 56px; min-height: calc(100vh - 56px); }
.page.active { display: flex; }
.page-full { display: none; margin-top: 56px; min-height: calc(100vh - 56px); padding: 24px 40px; }
.page-full.active { display: block; }

/* ============ SIDEBAR ============ */
.sidebar { width: 280px; background: #1a2536; border-right: 1px solid #2f4156; padding: 20px 0; flex-shrink: 0; position: fixed; top: 56px; bottom: 0; overflow-y: auto; }
.sidebar h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: #6b7a8d; padding: 12px 20px 8px; font-weight: 600; }
.sidebar .stat-cards { padding: 0 16px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.stat-card { background: #243447; border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all 0.15s; border: 2px solid transparent; }
.stat-card:hover { border-color: #2f4156; }
.stat-card.active { border-color: #c41230; background: rgba(196,18,48,0.15); }
.stat-card .icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.stat-card .icon.red { background: rgba(196,18,48,0.2); color: #ef5350; }
.stat-card .icon.amber { background: rgba(255,152,0,0.15); color: #ffa726; }
.stat-card .icon.blue { background: rgba(33,150,243,0.15); color: #42a5f5; }
.stat-card .icon.green { background: rgba(76,175,80,0.15); color: #66bb6a; }
.stat-card .icon.purple { background: rgba(171,71,188,0.15); color: #ce93d8; }
.stat-card .info { flex: 1; }
.stat-card .info .label { font-size: 12px; color: #6b7a8d; font-weight: 500; }
.stat-card .info .value { font-size: 22px; font-weight: 700; color: #e8edf3; }
.stat-card .trend { font-size: 11px; font-weight: 600; padding: 2px 6px; border-radius: 4px; }
.stat-card .trend.up { color: #66bb6a; background: rgba(76,175,80,0.15); }

.sidebar .order-list { list-style: none; }
.sidebar .order-list li { padding: 12px 20px; cursor: pointer; transition: background 0.1s; border-left: 3px solid transparent; }
.sidebar .order-list li:hover { background: rgba(255,255,255,0.04); }
.sidebar .order-list li.active { background: rgba(196,18,48,0.12); border-left-color: #c41230; }
.sidebar .order-list li .order-id { font-weight: 600; font-size: 13px; display: flex; justify-content: space-between; align-items: center; color: #e8edf3; }
.sidebar .order-list li .order-company { font-size: 12px; color: #6b7a8d; margin-top: 2px; }
.sidebar .order-list li .order-meta { font-size: 11px; color: #556677; margin-top: 4px; display: flex; gap: 8px; align-items: center; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-dot.needs-review { background: #ff9800; }
.status-dot.auto-matched { background: #4caf50; }
.status-dot.processing { background: #2196f3; animation: pulse 1.5s infinite; }
.status-dot.error { background: #f44336; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.tag.high { background: rgba(196,18,48,0.2); color: #ef5350; }
.tag.medium { background: rgba(255,152,0,0.2); color: #ffa726; }
.tag.auto { background: rgba(76,175,80,0.2); color: #66bb6a; }
.tag.blue { background: rgba(33,150,243,0.2); color: #42a5f5; }

/* ============ MAIN CONTENT ============ */
.main { margin-left: 280px; flex: 1; padding: 24px; max-width: 1200px; }

.order-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.order-header h1 { font-size: 22px; font-weight: 700; color: #e8edf3; }
.order-header .subtitle { color: #6b7a8d; font-size: 13px; margin-top: 4px; }
.order-header .actions { display: flex; gap: 8px; }
.btn { padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all 0.15s; display: inline-flex; align-items: center; gap: 6px; }
.btn-primary { background: #c41230; color: white; }
.btn-primary:hover { background: #a30f28; }
.btn-secondary { background: #243447; color: #e8edf3; border: 1px solid #2f4156; }
.btn-secondary:hover { background: #2f4156; }
.btn-success { background: #2e7d32; color: white; }
.btn-success:hover { background: #1b5e20; }
.btn-sm { padding: 5px 12px; font-size: 12px; }

/* ============ CARDS ============ */
.card { background: #243447; border-radius: 12px; border: 1px solid #2f4156; margin-bottom: 16px; overflow: hidden; }
.card-header { padding: 16px 20px; border-bottom: 1px solid #2f4156; display: flex; justify-content: space-between; align-items: center; }
.card-header h2 { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; color: #e8edf3; }
.card-body { padding: 20px; }

.source-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.source-panel { background: #1a2536; border-radius: 10px; padding: 16px; }
.source-panel h3 { font-size: 12px; font-weight: 600; color: #6b7a8d; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.source-panel .field { margin-bottom: 10px; }
.source-panel .field-label { font-size: 11px; color: #556677; font-weight: 500; }
.source-panel .field-value { font-size: 14px; font-weight: 500; margin-top: 2px; color: #e8edf3; }

.confidence-bar { display: flex; align-items: center; gap: 10px; }
.confidence-track { flex: 1; height: 8px; background: #2f4156; border-radius: 4px; overflow: hidden; }
.confidence-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.confidence-fill.high { background: linear-gradient(90deg, #43a047, #66bb6a); }
.confidence-fill.medium { background: linear-gradient(90deg, #ef6c00, #ffa726); }
.confidence-fill.low { background: linear-gradient(90deg, #c41230, #ef5350); }
.confidence-label { font-size: 13px; font-weight: 700; min-width: 42px; text-align: right; }
.confidence-label.high { color: #66bb6a; }
.confidence-label.medium { color: #ffa726; }
.confidence-label.low { color: #ef5350; }

.items-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.items-table thead { background: #1a2536; }
.items-table th { text-align: left; padding: 10px 14px; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #6b7a8d; border-bottom: 2px solid #2f4156; }
.items-table td { padding: 14px; border-bottom: 1px solid #2f4156; vertical-align: top; color: #e8edf3; }
.items-table tr:hover { background: rgba(255,255,255,0.03); }
.items-table tr.needs-attention { background: rgba(255,152,0,0.08); }
.items-table tr.matched { background: rgba(76,175,80,0.06); }
.items-table .item-match { display: flex; flex-direction: column; gap: 4px; }
.items-table .original { font-size: 12px; color: #6b7a8d; }
.items-table .mapped { font-weight: 600; color: #e8edf3; }
.match-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.match-badge.exact { background: rgba(76,175,80,0.2); color: #66bb6a; }
.match-badge.fuzzy { background: rgba(255,152,0,0.2); color: #ffa726; }
.match-badge.manual { background: rgba(196,18,48,0.2); color: #ef5350; }

/* GP Preview */
.gp-preview { background: rgba(33,150,243,0.08); border: 2px solid rgba(33,150,243,0.3); border-radius: 10px; padding: 20px; }
.gp-preview h3 { font-size: 14px; font-weight: 700; color: #42a5f5; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.gp-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gp-field { background: #1a2536; border-radius: 8px; padding: 10px 14px; border: 1px solid #2f4156; }
.gp-field .gp-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: #42a5f5; font-weight: 600; }
.gp-field .gp-value { font-size: 14px; font-weight: 600; color: #e8edf3; margin-top: 2px; }
.gp-field.auto-filled { border-left: 3px solid #4caf50; }
.gp-field.needs-input { border-left: 3px solid #ff9800; background: rgba(255,152,0,0.08); }

/* Decision panel */
.decision-panel { background: rgba(255,152,0,0.08); border: 2px solid rgba(255,152,0,0.3); border-radius: 10px; padding: 20px; margin-top: 16px; }
.decision-panel h3 { color: #ffa726; font-size: 14px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.decision-item { background: #1a2536; border-radius: 8px; padding: 14px; margin-bottom: 10px; border: 1px solid #2f4156; }
.decision-item:last-child { margin-bottom: 0; }
.decision-item .question { font-weight: 600; font-size: 13px; margin-bottom: 8px; color: #e8edf3; }
.decision-item .context { font-size: 12px; color: #6b7a8d; margin-bottom: 10px; }
.decision-options { display: flex; gap: 8px; flex-wrap: wrap; }
.decision-opt { padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: 2px solid #2f4156; background: #243447; color: #e8edf3; transition: all 0.15s; }
.decision-opt:hover { border-color: #c41230; }
.decision-opt.selected { border-color: #c41230; background: rgba(196,18,48,0.15); color: #ef5350; }
.decision-opt .price { font-weight: 400; color: #6b7a8d; }

/* Distributor compare */
.dist-compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 10px; }
.dist-card { border: 2px solid #2f4156; border-radius: 8px; padding: 12px; cursor: pointer; transition: all 0.15s; background: #243447; }
.dist-card:hover { border-color: rgba(33,150,243,0.5); }
.dist-card.recommended { border-color: #4caf50; background: rgba(76,175,80,0.08); }
.dist-card .dist-name { font-weight: 700; font-size: 13px; color: #e8edf3; }
.dist-card .dist-name span { font-size: 10px; font-weight: 600; color: #66bb6a; background: rgba(76,175,80,0.2); padding: 2px 6px; border-radius: 3px; margin-left: 6px; }
.dist-card .dist-detail { font-size: 12px; color: #6b7a8d; margin-top: 4px; }
.dist-card .dist-price { font-size: 18px; font-weight: 700; margin-top: 6px; color: #e8edf3; }
.dist-card .dist-avail { font-size: 11px; margin-top: 4px; }
.dist-card .dist-avail.in-stock { color: #66bb6a; }

/* Timeline */
.timeline { padding: 0 0 0 20px; border-left: 2px solid #2f4156; }
.timeline-item { position: relative; padding: 0 0 20px 20px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid #1a2536; }
.timeline-item.done::before { background: #4caf50; }
.timeline-item.current::before { background: #2196f3; animation: pulse 1.5s infinite; }
.timeline-item.pending::before { background: #2f4156; }
.timeline-item .tl-title { font-size: 13px; font-weight: 600; color: #e8edf3; }
.timeline-item .tl-time { font-size: 11px; color: #556677; }
.timeline-item .tl-detail { font-size: 12px; color: #6b7a8d; margin-top: 2px; }

/* ============ TABS ============ */
.tabs { display: flex; gap: 0; border-bottom: 2px solid #2f4156; margin-bottom: 20px; }
.tab { padding: 10px 20px; font-size: 13px; font-weight: 600; color: #6b7a8d; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.15s; }
.tab:hover { color: #e8edf3; }
.tab.active { color: #c41230; border-bottom-color: #c41230; }

/* ============ MODALS ============ */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 300; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.modal-overlay.show { display: flex; }
.modal { background: #243447; border-radius: 16px; width: 560px; max-height: 80vh; overflow-y: auto; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); border: 1px solid #2f4156; }
.modal.wide { width: 720px; }
.modal h2 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #e8edf3; }
.modal p { color: #6b7a8d; font-size: 13px; margin-bottom: 20px; }
.modal .checklist { list-style: none; }
.modal .checklist li { padding: 10px 0; border-bottom: 1px solid #2f4156; display: flex; align-items: center; gap: 10px; font-size: 14px; color: #e8edf3; }
.modal .checklist li .check { color: #4caf50; font-size: 18px; }
.modal .checklist li .warn { color: #ff9800; font-size: 18px; }

/* ============ TOAST ============ */
.toast { position: fixed; bottom: 24px; right: 24px; background: #e8edf3; color: #1a2536; padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 500; display: none; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,0.3); animation: slideUp 0.3s ease; }
.toast.show { display: flex; align-items: center; gap: 10px; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.fade-in { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============ PRODUCT CATALOG ============ */
.search-bar { display: flex; gap: 12px; margin-bottom: 24px; }
.search-bar input { flex: 1; padding: 12px 18px; border: 2px solid #2f4156; border-radius: 10px; font-size: 14px; outline: none; transition: border-color 0.15s; background: #243447; color: #e8edf3; }
.search-bar input:focus { border-color: #c41230; }
.search-bar input::placeholder { color: #556677; }
.search-bar select { padding: 12px 16px; border: 2px solid #2f4156; border-radius: 10px; font-size: 13px; background: #243447; color: #e8edf3; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.product-card { background: #243447; border-radius: 12px; border: 1px solid #2f4156; padding: 20px; transition: box-shadow 0.15s, border-color 0.15s; cursor: pointer; }
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.3); border-color: #c41230; }
.product-card .pc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.product-card .pc-sku { font-weight: 700; font-size: 14px; color: #e8edf3; }
.product-card .pc-mfg { font-size: 11px; color: #6b7a8d; font-weight: 500; }
.product-card .pc-name { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #e8edf3; }
.product-card .pc-details { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; font-size: 12px; }
.product-card .pc-details .pc-label { color: #556677; }
.product-card .pc-details .pc-val { font-weight: 600; }
.product-card .pc-prices { display: flex; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #2f4156; }
.product-card .pc-dist { flex: 1; background: #1a2536; border-radius: 8px; padding: 8px 10px; }
.product-card .pc-dist .dist-label { font-size: 10px; color: #6b7a8d; font-weight: 600; text-transform: uppercase; }
.product-card .pc-dist .dist-cost { font-size: 16px; font-weight: 700; color: #e8edf3; }
.product-card .pc-dist .dist-msrp { font-size: 11px; color: #556677; }
.inv-badges { display: flex; gap: 6px; margin-top: 10px; }
.inv-badge { font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600; }
.inv-badge.has-stock { background: rgba(76,175,80,0.15); color: #66bb6a; }
.inv-badge.low-stock { background: rgba(255,152,0,0.15); color: #ffa726; }
.inv-badge.no-stock { background: rgba(255,255,255,0.05); color: #556677; }

/* ============ CLIENTS ============ */
.client-table { width: 100%; border-collapse: collapse; }
.client-table th { text-align: left; padding: 12px 16px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #6b7a8d; border-bottom: 2px solid #2f4156; background: #1a2536; font-weight: 600; }
.client-table td { padding: 14px 16px; border-bottom: 1px solid #2f4156; font-size: 13px; color: #e8edf3; }
.client-table tr:hover { background: rgba(255,255,255,0.03); cursor: pointer; }
.client-table .client-name { font-weight: 600; }
.client-table .client-sub { font-size: 11px; color: #556677; }

/* ============ REPORTS ============ */
.report-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.report-stat { background: #243447; border-radius: 12px; border: 1px solid #2f4156; padding: 20px; text-align: center; }
.report-stat .rs-value { font-size: 32px; font-weight: 800; }
.report-stat .rs-label { font-size: 12px; color: #6b7a8d; margin-top: 4px; }
.report-stat .rs-change { font-size: 11px; font-weight: 600; margin-top: 6px; }
.chart-placeholder { background: #243447; border-radius: 12px; border: 1px solid #2f4156; padding: 24px; margin-bottom: 16px; }
.chart-placeholder h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; color: #e8edf3; }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 200px; padding-top: 20px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bar-col .bar { width: 100%; border-radius: 6px 6px 0 0; transition: height 0.5s ease; }
.bar-col .bar-label { font-size: 10px; color: #6b7a8d; }
.bar-col .bar-val { font-size: 11px; font-weight: 700; color: #e8edf3; }

/* ============ SETTINGS ============ */
.settings-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.settings-nav { list-style: none; }
.settings-nav li { padding: 10px 16px; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 500; color: #6b7a8d; transition: all 0.1s; margin-bottom: 2px; }
.settings-nav li:hover { background: rgba(255,255,255,0.04); color: #e8edf3; }
.settings-nav li.active { background: rgba(196,18,48,0.15); color: #ef5350; font-weight: 600; }
.settings-section { background: #243447; border-radius: 12px; border: 1px solid #2f4156; padding: 24px; }
.settings-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: #e8edf3; }
.settings-section .section-desc { font-size: 13px; color: #6b7a8d; margin-bottom: 20px; }
.setting-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid #2f4156; }
.setting-row:last-child { border-bottom: none; }
.setting-info .setting-name { font-size: 14px; font-weight: 600; color: #e8edf3; }
.setting-info .setting-desc { font-size: 12px; color: #6b7a8d; margin-top: 2px; }
.toggle { width: 44px; height: 24px; border-radius: 12px; background: #2f4156; position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.toggle.on { background: #4caf50; }
.toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: left 0.2s; }
.toggle.on::after { left: 22px; }
.select-input { padding: 8px 12px; border: 1px solid #2f4156; border-radius: 6px; font-size: 13px; background: #1a2536; color: #e8edf3; }

/* ============ NOTIFICATION DROPDOWN ============ */
.notif-dropdown { position: absolute; top: 48px; right: 0; width: 360px; background: #243447; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); border: 1px solid #2f4156; display: none; color: #e8edf3; z-index: 200; }
.notif-dropdown.show { display: block; }
.notif-dropdown .notif-header { padding: 14px 18px; border-bottom: 1px solid #2f4156; font-weight: 700; font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
.notif-dropdown .notif-item { padding: 12px 18px; border-bottom: 1px solid #2f4156; cursor: pointer; transition: background 0.1s; }
.notif-dropdown .notif-item:hover { background: rgba(255,255,255,0.04); }
.notif-dropdown .notif-item:last-child { border-bottom: none; }
.notif-dropdown .notif-title { font-size: 13px; font-weight: 600; color: #e8edf3; }
.notif-dropdown .notif-desc { font-size: 12px; color: #6b7a8d; margin-top: 2px; }
.notif-dropdown .notif-time { font-size: 11px; color: #556677; margin-top: 4px; }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; background: #c41230; display: inline-block; margin-right: 6px; }

/* SVG donut */
svg.donut { transform: rotate(-90deg); }

/* PO modal monospace */
.po-display { background: #1a2536; border: 1px solid #2f4156; border-radius: 8px; padding: 24px; font-family: monospace; font-size: 12px; line-height: 1.8; color: #e8edf3; }
.po-display table { color: #e8edf3; }
.po-display th { background: #2f4156 !important; color: #6b7a8d; }
.po-display td { color: #e8edf3; }

/* Validation check items */
.validation-pass { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(76,175,80,0.1); border-radius: 6px; font-size: 13px; color: #e8edf3; }
.validation-warn { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(255,152,0,0.1); border-radius: 6px; font-size: 13px; color: #e8edf3; }

/* Customer match bar */
.customer-match { background: rgba(33,150,243,0.1); border-radius: 10px; padding: 14px 18px; display: flex; align-items: center; gap: 14px; }
.customer-match-label { font-size: 12px; color: #42a5f5; font-weight: 600; }
.customer-match-value { font-size: 14px; font-weight: 600; color: #e8edf3; }
.customer-match-meta { font-size: 12px; color: #6b7a8d; }

/* Page headings */
.page-full h1 { color: #e8edf3; }
.page-full p { color: #6b7a8d; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2f4156; border-radius: 3px; }
