﻿:root {
  --navy: #071d49;
  --blue: #1e6cff;
  --orange: #ff7a00;
  --green: #16a66a;
  --purple: #7256e8;
  --red: #ef233c;
  --text: #111827;
  --muted: #687386;
  --line: #e7ebf2;
  --bg: #f6f8fc;
  --card: #fff;
  --shadow: 0 8px 24px rgba(7,29,73,.08);
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); font-family: Arial, sans-serif; color: var(--text); height: 100%; overflow: hidden; }
body { min-height: 100vh; min-height: 100dvh; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

/* ---- APP SHELL ---- */
.app-shell { max-width: 430px; margin: 0 auto; height: 100vh; height: 100dvh; background: #fff; position: relative; display: flex; flex-direction: column; }
main#app { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* ---- SPLASH / OPENING SCREEN ---- */
.splash { position: fixed; inset: 0; background: #fff; display: flex; align-items: center; justify-content: center; z-index: 300; transition: opacity .4s ease; }
.splash img { width: auto; height: auto; max-width: 70%; max-height: 55vh; object-fit: contain; }
.splash.hide { opacity: 0; pointer-events: none; }

/* ---- TOPBAR ---- */
.topbar {
  position: sticky; top: 0; z-index: 20; min-height: 72px;
  padding: env(safe-area-inset-top) 16px 0;
  display: grid; grid-template-columns: 44px 1fr 44px; align-items: center;
  background: linear-gradient(135deg, var(--navy), #001233);
  color: #fff; flex-shrink: 0;
}
.icon-btn { border: 0; background: transparent; color: #fff; font-size: 24px; }
.brand { text-align: center; line-height: 1.05; }
.brand strong { display: block; font-size: 23px; }
.brand span { display: block; color: var(--orange); font-weight: 800; font-size: 11px; margin-top: 4px; }

/* ---- PAGES ---- */
.page { padding: 14px 16px calc(130px + env(safe-area-inset-bottom)); min-height: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: 24px; margin-bottom: 4px; }
h2 { font-size: 18px; margin-bottom: 10px; }
.subtle { color: var(--muted); font-size: 13px; }

/* ---- GRID ---- */
.grid { display: grid; gap: 8px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---- CARDS ---- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px; }

/* ---- TINTED STAT CARDS (shared design system) ---- */
.tint-green { background: #eaf9f1; border-color: #cdeeda; }
.tint-orange { background: #fff5e9; border-color: #ffe0c2; }
.tint-blue { background: #eaf2ff; border-color: #d3e2ff; }
.tint-red { background: #fff0f2; border-color: #ffd9de; }
.tint-neutral { background: #f3f6fb; border-color: #e3e9f2; }

/* ---- METRIC BLOCKS ---- */
.metric { min-height: 76px; padding: 12px 14px; }
.metric .label, .kpi-card .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--navy); }
.metric .value, .kpi-card .value { font-size: 20px; font-weight: 800; margin: 6px 0 3px; line-height: 1.1; color: var(--text); }
.metric .units, .kpi-card .sub { font-size: 11px; font-weight: 400; color: var(--muted); }
.blue { color: var(--blue); }
.orange { color: var(--orange); }
.green { color: var(--green); }
.purple { color: var(--purple); }
.red { color: var(--red); }

/* ---- SECTION HEAD ---- */
.section-head { display: flex; justify-content: space-between; align-items: center; margin: 12px 0 8px; }
.section-head h2 { margin: 0; }
.link-btn { border: 0; background: transparent; color: var(--blue); font-weight: 700; font-size: 13px; }

/* ---- ORDER ROW ---- */
.order-row, .product-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.order-row:last-child, .product-row:last-child { border-bottom: 0; }
.order-main strong { display: block; margin-bottom: 5px; }
.meta { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ---- BADGES ---- */
.badge { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.badge.open { background: #e7f0ff; color: var(--blue); }
.badge.partial { background: #fff0df; color: var(--orange); }
.badge.complete { background: #e7f8ef; color: var(--green); }
.badge.overdue { background: #ffe7e7; color: #cc0000; }
.order-row.overdue { border-left: 3px solid #cc0000; background: #fff5f5; margin-bottom: 4px; border-radius: 4px; padding-left: 10px; }
.badge.ready { background: #efeafd; color: var(--purple); }
.badge.outstanding { background: #ffe5e5; color: var(--red); }
.badge.booked { background: #fff3e0; color: #e65100; }
.badge.scheduled { background: #e0f2fe; color: #0277bd; }
.badge.date-changed-badge { background: #e7f0ff; color: var(--blue); margin-left: 8px; }
.truck-icon { font-size: 14px; margin-left: 4px; }

/* ---- BUTTONS ---- */
.primary-btn, .secondary-btn, .danger-btn { width: 100%; border-radius: 10px; padding: 14px 16px; font-weight: 800; border: none; }
.primary-btn { background: var(--navy); color: #fff; }
.secondary-btn { background: #fff; border: 1px solid var(--blue); color: var(--blue); }
.danger-btn { background: var(--red); color: #fff; }
.primary-btn:disabled { background: #94a3b8; cursor: not-allowed; }

/* ---- QUICK ACTIONS ---- */
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.quick-action { border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 10px 6px; text-align: center; }
.quick-action span { display: block; font-size: 20px; margin-bottom: 4px; }
.quick-action small { font-size: 10px; font-weight: 700; }

/* ---- SEARCH ---- */
.search-bar { margin: 0 -16px 12px; padding: 0 16px; }
.search-bar input { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 10px; font-size: 15px; background: #f8f9fb; outline: none; direction: ltr; text-align: left; }
.search-bar input:focus { border-color: var(--blue); background: #fff; }

/* ---- MONTH DROPDOWN ---- */
.month-dropdown {
  padding: 0 0 14px;
}
.month-dropdown select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; font-size: 14px; font-weight: 700; color: var(--navy);
  outline: none; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23071d49' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(7,29,73,.06);
}
.month-dropdown select:focus { border-color: var(--navy); }

/* ---- TABS ---- */
.tabs { display: flex; gap: 4px; overflow-x: auto; border-bottom: 1px solid var(--line); margin: 0 -16px 14px; padding: 0 16px; }
.tab { white-space: nowrap; border: 0; background: transparent; padding: 12px 10px; color: #4a5873; font-size: 12px; font-weight: 700; transition: all .2s ease; }
.tab.active { color: var(--blue); border-bottom: 3px solid var(--blue); }

/* ---- LIST CARDS ---- */
.list-card { padding: 0 14px; margin-bottom: 12px; border-left: 4px solid var(--blue); }
.list-card.partial { border-left-color: var(--orange); }
.list-card.complete { border-left-color: var(--green); }
.list-card.ready { border-left-color: var(--purple); }
.list-card.outstanding { border-left-color: var(--red); }
.product-line-card { border-top: 1px solid var(--line); }

/* ---- COMPACT CARDS (Orders / Deliveries / Home lists) ---- */
.compact-card { padding: 12px 14px; cursor: pointer; transition: transform .15s; }
.compact-card:active { transform: scale(0.98); }
.cc-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cc-head strong { font-size: 15px; }
.cc-qty { margin-left: auto; font-weight: 800; font-size: 15px; white-space: nowrap; text-align: right; }
.cc-qty small { display: block; font-weight: 400; font-size: 10px; color: var(--muted); }
.cc-sub { font-size: 12px; color: var(--muted); line-height: 1.5; margin-top: 4px; }

/* ---- DETAIL ---- */
.detail-title { display: flex; gap: 10px; align-items: center; margin-bottom: 4px; flex-wrap: wrap; }

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 11px; }
th { background: #f1f4f9; text-align: left; color: #52617b; }
th, td { padding: 10px 7px; border-bottom: 1px solid var(--line); vertical-align: top; }

/* ---- ACTIONS ---- */
.actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.doc-requested { border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; background: #f4f8ff; }

/* ---- INFO LIST (order/delivery/product details) ---- */
.info-list { padding: 4px 16px; }
.info-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--muted); flex-shrink: 0; }
.info-value { font-weight: 700; text-align: right; word-break: break-word; }

/* ---- COMPACT DATE CHANGE FORM ---- */
.doc-label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 5px; }


/* ---- PRODUCTS ---- */
.product-thumb { width: 48px; height: 48px; border-radius: 12px; background: #f4eadc; display: grid; place-items: center; font-size: 25px; flex-shrink: 0; position: relative; overflow: hidden; }
.product-thumb-image { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.product-row { grid-template-columns: 52px 1fr auto; align-items: center; }
.stock { text-align: right; color: var(--green); font-size: 11px; font-weight: 800; }

/* ---- PRODUCT IMAGES (order lines / product detail) ---- */
.product-line-image { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.product-detail-image { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; }
.product-no-image { display: inline-flex; align-items: center; justify-content: center; text-align: center; width: 40px; height: 40px; border-radius: 8px; background: #f1f4f9; border: 1px dashed #c3cddd; color: #8a95a8; font-size: 8px; line-height: 1.2; padding: 3px; box-sizing: border-box; flex-shrink: 0; }
.product-no-image.product-thumb-image { width: 46px; height: 46px; border-radius: 10px; }
.product-no-image.product-detail-image { width: 56px; height: 56px; border-radius: 12px; font-size: 9px; }

/* ---- PRODUCT HISTORY ---- */
.history-table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.history-row { display: grid; grid-template-columns: 1.1fr 1.1fr 0.9fr 0.9fr 1.2fr; gap: 6px; align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 11px; }
.history-row:last-child { border-bottom: 0; }
.history-head { background: #f1f4f9; font-weight: 800; color: #52617b; font-size: 10px; text-transform: uppercase; }
.history-row > span { min-width: 0; overflow-wrap: break-word; }

/* ---- REPORTS ---- */
.kpi-card .value { font-size: 19px; font-weight: 800; margin: 8px 0; }
.kpi-card .trend { font-size: 11px; color: var(--green); }
.chart { min-height: 0; border: 1px solid var(--line); border-radius: 14px; padding: 14px; background: linear-gradient(#fff, #fbfcff); overflow: hidden; }
.chart h2 { margin-bottom: 8px; }
.donut { width: 96px; height: 96px; border-radius: 50%; background: conic-gradient(var(--green) 0 60%, var(--orange) 60% 82%, var(--blue) 82% 100%); position: relative; margin: 8px auto 12px; flex: 0 0 auto; }
.donut::after { content: ""; position: absolute; inset: 24px; background: #fff; border-radius: 50%; }
.legend { display: grid; gap: 5px; font-size: 12px; }
.legend div { display: flex; justify-content: space-between; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 12px; font-weight: 800; margin-bottom: 8px; }
input, select, textarea { width: 100%; border: 1px solid #dbe2ee; border-radius: 10px; padding: 13px; background: #fff; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
textarea { min-height: 110px; resize: vertical; }
.upload { border: 1px dashed #b9c5d8; border-radius: 12px; height: 140px; display: grid; place-items: center; color: #52617b; text-align: center; cursor: pointer; }

/* ---- BOTTOM NAV ---- */
.bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(430px, 100%); height: 72px; background: #fff;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(5, 1fr);
  z-index: 30; padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.nav-item { border: 0; background: transparent; color: #53627d; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-item span { font-size: 20px; }
.nav-item small { font-size: 10px; font-weight: 700; }
.nav-item.active { color: var(--orange); }

/* ---- LOGIN ---- */
.login-overlay { position: fixed; inset: 0; background: #fff; display: flex; align-items: center; justify-content: center; z-index: 100; }
.login-box { width: 90%; max-width: 340px; text-align: center; }
.login-box img { width: auto; height: auto; max-width: 200px; max-height: 220px; object-fit: contain; margin: 0 auto 16px; display: block; }
.login-box h1 { font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.login-box .subtitle { color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.login-box label { text-align: left; font-size: 12px; font-weight: 800; color: #4a5873; }
.login-box input { text-align: center; letter-spacing: 8px; font-size: 18px; margin-bottom: 16px; }
.login-box .error { color: var(--red); font-size: 13px; margin-top: 8px; min-height: 20px; }

/* ---- EMPTY ---- */
.empty { padding: 40px 20px; text-align: center; color: var(--muted); }

/* ---- TOAST ---- */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; padding: 10px 22px; border-radius: 20px; font-size: 13px; font-weight: 600; z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.toast.show { opacity: 1; }

/* ---- OFFLINE ---- */
.offline-banner { background: var(--orange); color: #fff; text-align: center; padding: 8px; font-size: 12px; font-weight: 600; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }

/* ---- DOCUMENT FORM ---- */
.doc-label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 4px; margin-top: 10px; }
#docName, #docUrl {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 14px; box-sizing: border-box;
}
#docName:focus, #docUrl:focus { border-color: var(--navy); outline: none; }

/* ---- LOAD CARDS / UTILISATION ---- */
.load-card { padding: 14px; margin-bottom: 10px; cursor: pointer; transition: transform .15s; }
.load-card:active { transform: scale(0.98); }
.load-product-row { font-size: 12px; padding: 2px 0; color: var(--muted); line-height: 1.4; }
.utilisation-bar { height: 8px; border-radius: 4px; background: var(--line); overflow: hidden; margin: 6px 0; }
.utilisation-fill { height: 100%; border-radius: 4px; transition: width .3s ease; }
.utilisation-fill.green { background: var(--green); }
.utilisation-fill.orange { background: var(--orange); }
.utilisation-fill.blue { background: var(--blue); }
.utilisation-fill.red { background: var(--red); }
.badge.space-available { background: #e7f8ef; color: var(--green); }
.badge.full-load { background: #e7f0ff; color: var(--blue); }
.badge.over-capacity { background: #ffe7e7; color: var(--red); }

/* ---- EGGCHOICE SPECIFIC ---- */
.badge.cancelled { background: #eceef1; color: #687386; text-decoration: line-through; }
.badge.partial { background: #fff0df; color: var(--orange); }
.badge.open { background: #e7f0ff; color: var(--blue); }
.badge.complete { background: #e7f8ef; color: var(--green); }

.progress-track { height: 8px; border-radius: 6px; background: var(--line); overflow: hidden; margin: 6px 0; }
.progress-fill { height: 100%; border-radius: 6px; background: var(--green); }
.progress-fill.partial { background: var(--orange); }
.progress-fill.none { background: var(--blue); }

.week-chip { display: inline-block; font-size: 11px; font-weight: 700; color: var(--navy); background: #eef2f9; border-radius: 999px; padding: 4px 10px; margin-bottom: 10px; }

.delivery-row { cursor: pointer; transition: transform .15s; }
.delivery-row:active { transform: scale(0.98); }

.line-row { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.line-row:last-child { border-bottom: 0; }
.line-main { flex: 1; }
.product-line-card .line-main { display: flex; gap: 10px; align-items: flex-start; }
.line-main strong { display: block; font-size: 13px; margin-bottom: 4px; }
.line-text { flex: 1; }
.line-sub { font-size: 11px; color: var(--muted); line-height: 1.5; }
.line-amount { text-align: right; font-weight: 800; font-size: 13px; }
.line-amount small { display: block; font-weight: 400; color: var(--muted); font-size: 11px; }

.report-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
.kpi-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px; text-align: center; }
  .kpi-card .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--navy); }
.kpi-card .value { font-size: 20px; font-weight: 800; margin: 6px 0 3px; line-height: 1.1; color: var(--text); }
.kpi-card .sub { font-size: 11px; color: var(--muted); font-weight: 400; }


.page > .section-head { margin-top: 14px; margin-bottom: 8px; }
.table-wrap { margin-top: 0; border: 1px solid var(--line); border-radius: 12px; overflow-x: auto; }
.table-wrap table { min-width: 420px; }
.table-wrap th, .table-wrap td { padding: 8px 6px; }

.donut-green { background: conic-gradient(var(--green) var(--c1,0) var(--c2,0), var(--orange) var(--c2,0) var(--c3,0), var(--blue) var(--c3,0) var(--c4,0), #eceef1 var(--c4,0) 100%); }

/* ---- ITEM SALES BREAKDOWN ---- */
.breakdown-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; margin-top: 14px; overflow: hidden; }
.breakdown-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 10px; }
.breakdown-head h2 { margin-bottom: 0; font-size: 18px; font-weight: 800; white-space: nowrap; }
.quarter-select { font-size: 12px; font-weight: 700; padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--navy); max-width: 100%; min-width: 0; }

/* Segmented week control */
.week-segment { display: flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.week-seg-btn { flex: 1; font-size: 12px; font-weight: 700; padding: 9px 0; border: 0; background: #fff; color: var(--muted); cursor: pointer; white-space: nowrap; transition: all .15s; border-right: 1px solid var(--line); }
.week-seg-btn:last-child { border-right: 0; }
.week-seg-btn.active { background: var(--navy); color: #fff; }
.week-seg-btn:not(.active):active { background: #f5f7fa; }

/* Column headers */
.breakdown-cols { display: flex; padding: 0 0 8px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.breakdown-cols .col-wrb { flex: 1.6; font-size: 11px; font-weight: 700; color: var(--muted); padding-left: 4px; min-width: 130px; position: sticky; left: 0; background: #fff; z-index: 2; }
.breakdown-cols .col-val { flex: 1; font-size: 11px; font-weight: 700; color: var(--navy); text-align: center; white-space: nowrap; }

/* Product rows */
.breakdown-row { display: flex; align-items: center; border: 1px solid #eef1f6; border-radius: 12px; padding: 10px 6px; margin-bottom: 6px; transition: background .1s; }
.breakdown-row:active { background: #fafbfd; }
.breakdown-row .row-wrb { flex: 1.6; display: flex; align-items: center; gap: 8px; min-width: 130px; position: sticky; left: 0; background: #fff; z-index: 2; padding-left: 4px; }
.breakdown-row .row-val { flex: 1; text-align: center; font-size: 13px; font-weight: 500; color: var(--text); white-space: nowrap; }
.wrb-pill { font-size: 11px; font-weight: 700; color: var(--navy); background: #eef2f9; border-radius: 6px; padding: 3px 8px; white-space: nowrap; flex-shrink: 0; }
.row-img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.wrb-name { font-size: 12px; color: var(--text); font-weight: 600; line-height: 1.3; }
.qty-complete { background: #e7f8ef; color: var(--green); font-weight: 700; border-radius: 6px; padding: 3px 8px; display: inline-block; }
.qty-partial { background: #fff0df; color: var(--orange); font-weight: 700; border-radius: 6px; padding: 3px 8px; display: inline-block; }
.qty-open { background: #e7f0ff; color: var(--blue); font-weight: 700; border-radius: 6px; padding: 3px 8px; display: inline-block; }
.val-dash { color: #c5cdd9; }

/* Total row */
.breakdown-total { display: flex; align-items: center; background: #f3f6fb; border: 1px solid var(--line); border-radius: 12px; padding: 12px 6px; margin-top: 4px; }
.breakdown-total .total-info { flex: 1.6; display: flex; align-items: center; gap: 8px; min-width: 130px; padding-left: 4px; }
.breakdown-total .total-icon { width: 28px; height: 28px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; flex-shrink: 0; }
.breakdown-total .total-text { font-size: 13px; font-weight: 800; color: var(--navy); }
.breakdown-total .total-val { flex: 1; text-align: center; font-size: 13px; font-weight: 800; color: var(--navy); }

@media (max-width: 400px) {
  .breakdown-head { flex-direction: column; align-items: flex-start; }
  .quarter-select { width: 100%; }
}

/* ---- HOME FOOTER ---- */
.home-footer { text-align: center; margin-top: 16px; }

/* ---- SMALL SCREENS ---- */
@media (max-width: 380px) {
  .info-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .info-value { text-align: left; }
  .actions { grid-template-columns: 1fr; }
}






