:root {
    --navy-950: #03101f;
    --navy-900: #061a33;
    --navy-800: #08345f;
    --blue-700: #005eb8;
    --blue-600: #0078d4;
    --cyan-500: #00b8e6;
    --green-500: #13b981;
    --amber-500: #f59e0b;
    --red-600: #b42318;
    --success: #067647;
    --page-bg: #eaf5ff;
    --card-bg: #ffffff;
    --panel-bg: #f5fbff;
    --text: #111827;
    --muted: #526070;
    --line: #b8d3ee;
    --line-dark: #77a9d8;
    --shadow: 0 22px 55px rgba(3, 16, 31, 0.18);
    --shadow-soft: 0 12px 32px rgba(3, 16, 31, 0.10);
    --radius: 18px;
}

* { box-sizing: border-box; }

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 184, 230, 0.28), transparent 32rem),
        radial-gradient(circle at 100% 4%, rgba(0, 94, 184, 0.22), transparent 34rem),
        radial-gradient(circle at 22% 100%, rgba(19, 185, 129, 0.14), transparent 30rem),
        linear-gradient(135deg, #eef8ff 0%, #f8fbff 44%, #e7f2ff 100%);
}

a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell {
    max-width: 1540px;
    margin: 0 auto;
    padding: 28px;
}

/* Header and navigation */
.app-header {
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
    border-radius: 28px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background:
        radial-gradient(circle at 16% -20%, rgba(0, 184, 230, 0.42), transparent 28rem),
        radial-gradient(circle at 95% 18%, rgba(19, 185, 129, 0.23), transparent 24rem),
        linear-gradient(135deg, #02070f 0%, #061a33 46%, #005eb8 100%);
    box-shadow: var(--shadow);
}

.app-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(100deg, rgba(255,255,255,0.04), rgba(255,255,255,0.16) 45%, rgba(255,255,255,0.02) 70%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 24px);
}

.logo-centre,
.header-content { position: relative; z-index: 1; }

.logo-centre {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 10px;
}

.logo-centre::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 90px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 22% 18%, rgba(0, 184, 230, 0.32), transparent 32%),
        linear-gradient(135deg, #000000 0%, #07111f 60%, #062747 100%);
    border: 2px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.10),
        0 18px 35px rgba(0,0,0,0.32);
}

.app-logo {
    position: relative;
    display: block;
    height: 56px;
    width: auto;
    padding: 5px 14px;
    border-radius: 12px;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.45);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.50));
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
    padding: 22px 28px 28px;
}

.eyebrow {
    margin-bottom: 6px;
    color: #d7f5ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.9rem, 2.3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--navy-950) !important;
    background: #ffffff;
    border: 2px solid rgba(0, 184, 230, 0.55);
    font-weight: 900;
    box-shadow: 0 12px 22px rgba(0,0,0,0.20);
    text-decoration: none;
}

.nav-links a:nth-child(1) { background: linear-gradient(180deg, #ffffff 0%, #dff6ff 100%); }
.nav-links a:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #e6fff5 100%); }
.nav-links a:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #fff2d8 100%); }

.nav-links a:hover {
    transform: translateY(-1px);
    border-color: #ffffff;
    background: var(--cyan-500);
    color: #001a2e !important;
}

.user-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 900;
}

/* Page sections */
.page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 20px 22px;
    border-radius: 22px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.40);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 184, 230, 0.28), transparent 18rem),
        linear-gradient(135deg, #041225 0%, #063967 55%, #005eb8 100%);
    box-shadow: var(--shadow-soft);
}

.page-hero h2 { margin: 0 0 8px; color: #ffffff; font-size: clamp(1.65rem, 2.1vw, 2.45rem); }
.page-hero p { margin: 0; color: #e4f7ff; }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.metric-card,
.card {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.metric-card {
    position: relative;
    overflow: hidden;
    padding: 18px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #eaf7ff 100%);
}
.metric-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, var(--cyan-500), var(--blue-700), var(--green-500));
}
.metric-card span { display: block; margin-bottom: 10px; color: var(--muted); font-weight: 900; }
.metric-card strong { color: var(--navy-950); font-size: 2rem; }

.card { padding: 24px; }
.highlighted-card { position: relative; overflow: hidden; }
.highlighted-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--blue-700), var(--cyan-500), var(--green-500), var(--amber-500));
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(440px, 0.95fr) minmax(580px, 1.35fr);
    gap: 22px;
}
.orders-layout { grid-template-columns: minmax(700px, 1.18fr) minmax(420px, 0.82fr); }
.customer-log-layout { grid-template-columns: minmax(520px, 0.95fr) minmax(650px, 1.35fr); }
.single-card-wrap { display: flex; justify-content: center; padding-top: 40px; }
.narrow-card { width: min(100%, 520px); }
.single-edit-card,
.export-card { max-width: 1180px; margin: 0 auto; }

.section-heading h2,
.section-heading h3,
.detail-card h3,
.product-card h4,
.print-preview-card h1 { margin: 0 0 8px; color: var(--navy-950); }
.section-heading p,
.muted,
.help-text,
.table-sub,
.hint-box,
.empty-state,
.serial-hint { color: var(--muted); }
.section-heading.compact { margin-bottom: 16px; }

/* Forms */
.stacked-form { display: flex; flex-direction: column; gap: 16px; }
.form-panel {
    padding: 17px;
    border: 1px solid #a7caed;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(238,248,255,0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
.light-panel { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.warning-panel { background: linear-gradient(180deg, #fffaf0 0%, #fff4d8 100%); border-color: #e7bf62; }
.panel-title,
.subsection-label {
    margin-bottom: 12px;
    color: var(--navy-800);
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.field-grid { display: grid; gap: 16px; margin-bottom: 14px; }
.field-grid:last-child { margin-bottom: 0; }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label,
.toolbar-field label,
.meta-label { color: #26384e; font-size: 0.92rem; font-weight: 900; }

input,
select,
textarea,
button { font: inherit; }
input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #96badf;
    background: #ffffff;
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
    transition: border 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--cyan-500);
    box-shadow: 0 0 0 4px rgba(0, 184, 230, 0.16), 0 8px 20px rgba(0,94,184,0.10);
}
.readonly-field input { color: #475467; background: #edf4fb; }

.contact-stack { display: grid; gap: 12px; margin-bottom: 12px; }
.contact-row {
    padding: 12px;
    border: 1px dashed #80add8;
    border-radius: 14px;
    background: #ffffff;
}

.primary-btn,
.secondary-btn,
.link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
}
.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-700) 55%, var(--cyan-500) 100%);
    box-shadow: 0 12px 24px rgba(0, 94, 184, 0.28);
}
.primary-btn:hover { filter: brightness(1.05); transform: translateY(-1px); text-decoration: none; }
.secondary-btn,
.link-btn {
    color: var(--navy-900);
    background: linear-gradient(180deg, #ffffff 0%, #e5f4ff 100%);
    border: 1px solid #9bc6ee;
}
.secondary-btn:hover,
.link-btn:hover { background: #dff4ff; text-decoration: none; }
.big-btn { min-height: 52px; font-size: 1.03rem; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Lists and tables */
.list-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.toolbar-form { display: flex; gap: 12px; align-items: end; flex-wrap: wrap; margin-bottom: 16px; }
.filter-bar { padding: 14px; border-radius: 16px; background: #eef8ff; border: 1px solid var(--line); }
.toolbar-field { min-width: 180px; }
.toolbar-field.grow { flex: 1 1 280px; }
.toolbar-actions { display: flex; gap: 10px; align-items: center; }

.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 16px; background: #ffffff; box-shadow: 0 14px 30px rgba(3,16,31,0.08); }
.table-wrap table { width: 100%; min-width: 880px; border-collapse: collapse; }
.table-wrap th,
.table-wrap td { padding: 14px 16px; border-bottom: 1px solid #d8e6f5; vertical-align: top; text-align: left; }
.table-wrap th { color: #ffffff; background: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-700) 100%); font-size: 0.9rem; }
.table-wrap tr:nth-child(even) td { background: #f6fbff; }
.table-main { margin-bottom: 4px; color: var(--navy-950); font-weight: 900; }
.table-sub { margin-top: 4px; font-size: 0.88rem; }
.text-link { font-weight: 900; }

.contact-chip { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; margin-bottom: 8px; border-radius: 12px; background: #edf7ff; }
.status-pill-wrap,
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.status-pill,
.serial-pill,
.check-tag,
.machine-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 900;
}
.status-pill { padding: 8px 12px; font-size: 0.88rem; }
.status-initial-eng { color: #004b8d; background: #e0f2ff; }
.status-quoted { color: #8a4c00; background: #fff2c9; }
.status-ordered { color: #006b5f; background: #dffaf3; }
.machine-tag { padding: 7px 10px; color: #004b8d; background: #e4f5ff; font-size: 0.84rem; }
.empty-state { padding: 22px; border: 1px dashed var(--line-dark); border-radius: 14px; background: #f7fbff; }
.hidden { display: none !important; }

/* Dropdown tick-list */
.dropdown-checklist { position: relative; width: 100%; }
.dropdown-checklist summary {
    position: relative;
    min-height: 46px;
    width: 100%;
    padding: 12px 44px 12px 14px;
    border-radius: 12px;
    border: 1px solid #96badf;
    background: #ffffff;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dropdown-checklist summary::-webkit-details-marker { display: none; }
.dropdown-checklist summary::after { content: "▾"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.dropdown-checklist[open] summary { border-color: var(--cyan-500); box-shadow: 0 0 0 4px rgba(0,184,230,0.15); }
.dropdown-checklist-panel {
    position: absolute;
    z-index: 20;
    left: 0; right: 0; top: calc(100% + 6px);
    display: grid;
    gap: 8px;
    max-height: 270px;
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
}
.dropdown-checklist-panel.tall-panel { max-height: 360px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #bdd8f0;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
    font-weight: 800;
}
.checkbox-row:hover { background: #eef9ff; border-color: var(--cyan-500); }
.checkbox-row input { width: auto; min-height: auto; margin: 0; }
.compact-checkbox { padding: 9px 10px; font-size: 0.92rem; }

/* Product/sign-off cards */
.product-card {
    padding: 18px;
    border: 1px solid #a7caed;
    border-radius: 18px;
    background: linear-gradient(135deg, #e9f7ff 0%, #ffffff 46%, #f0fff8 100%);
    box-shadow: 0 16px 32px rgba(0,94,184,0.10);
}
.product-card + .product-card { margin-top: 14px; }
.product-card-header,
.detail-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.product-card-header h4 { color: var(--navy-900); font-size: 1.25rem; }

/* Small serial label preview board */
.label-preview-card {
    width: fit-content;
    max-width: 100%;
    margin: 8px 0 18px;
    padding: 16px;
    border-radius: 18px;
    color: var(--text);
    border: 2px solid #8ab9e8;
    background: linear-gradient(135deg, #ffffff 0%, #e8f7ff 100%);
    box-shadow: 0 16px 34px rgba(0, 94, 184, 0.14);
}
.label-preview-title {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--navy-900), var(--blue-700), var(--cyan-500));
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.label-preview-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 390px;
    max-width: 100%;
    min-height: 250px;
    padding: 18px;
    border: 5px solid var(--navy-900);
    border-radius: 16px;
    background:
        linear-gradient(45deg, rgba(255,255,255,0.45) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.45) 75%),
        linear-gradient(45deg, rgba(255,255,255,0.45) 25%, #d9edff 25%, #d9edff 75%, rgba(255,255,255,0.45) 75%);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.78), 0 16px 32px rgba(3,16,31,0.20);
    overflow: auto;
}
.serial-label-mini-wrap { width: 336px; height: 197px; flex: 0 0 auto; }
.label-preview-frame .serial-label-format { transform: scale(0.72); transform-origin: top left; }
.serial-label-format {
    position: relative;
    display: block;
    width: 466px;
    height: 273px;
    padding: 34px 38px;
    overflow: hidden;
    color: #000000;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(16,24,40,0.20);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.15;
}
.serial-label-left { width: 280px; }
.serial-label-format * { -webkit-font-smoothing: antialiased; text-rendering: geometricPrecision; }
.label-product-title,
.label-line,
.label-line.small,
.label-date { color: #000000; font-weight: 800; }
.label-product-title { margin: 0 0 4px; font-size: 16px; line-height: 1.15; font-weight: 900; }
.label-line { margin: 0 0 4px; font-size: 15px; line-height: 1.15; font-weight: 800; }
.label-line.small { margin-bottom: 2px; font-size: 13px; line-height: 1.15; font-weight: 800; }
.label-spacer { height: 26px; }
.label-date { margin-top: 22px; font-size: 13px; font-weight: 800; }
.serial-label-right {
    position: absolute;
    top: 78px;
    right: 39px;
    width: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.label-logo-image {
    display: block;
    width: 108px;
    max-width: 100%;
    height: auto;
    margin-bottom: 48px;
    background: transparent;
    image-rendering: auto;
}
.ce-image {
    display: block;
    width: 126px;
    max-width: none;
    height: auto;
}

/* Details and labels */
.order-summary-card { margin-bottom: 22px; }
.order-meta-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.meta-value { margin-top: 6px; color: var(--navy-950); font-weight: 900; }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 18px; }
.detail-card { padding: 22px; }
.serial-pill { padding: 9px 14px; color: #004b8d; background: #e0f2ff; }
.detail-label-preview { margin: 16px 0; }
.detail-table { display: grid; gap: 10px; margin: 16px 0; }
.detail-table div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 12px; background: #f3f9ff; }
.detail-table span { color: var(--muted); }
.detail-table strong { color: var(--navy-950); }
.status-check-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.check-tag { padding: 10px 14px; }
.check-tag.passed { color: var(--success); background: #dcfce7; }
.check-tag.pending { color: #475467; background: #eef2f7; }
.export-count { padding: 12px 14px; color: #123b66; background: #eef6ff; border: 1px solid #c9dff7; border-radius: 12px; font-weight: 800; }
.hint-box { margin-top: 18px; padding: 16px; border-radius: 14px; background: #f8fafc; border: 1px dashed var(--line-dark); line-height: 1.6; }
code { padding: 2px 6px; border-radius: 8px; background: #eef2f7; }

/* Serial-label print page */
.label-print-body { background: #eef6ff; }
.label-print-shell { max-width: 720px; margin: 0 auto; padding: 32px; text-align: center; }
.label-print-actions { justify-content: center; margin: 0 auto 18px; }
.print-preview-card { max-width: 680px; margin: 0 auto 18px; padding: 20px 24px; border-radius: 18px; border: 1px solid var(--line); background: #ffffff; box-shadow: var(--shadow-soft); }
.print-frame { margin: 0 auto; text-align: left; }
.no-print { }

@media (max-width: 1260px) {
    .two-column-layout,
    .orders-layout,
    .customer-log-layout,
    .metrics-grid,
    .order-meta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .shell { padding: 16px; }
    .header-content,
    .page-hero,
    .list-heading,
    .product-card-header,
    .detail-card-header { flex-direction: column; align-items: stretch; }
    .topbar-right { align-items: stretch; }
    .nav-links { flex-direction: column; }
    .three-up,
    .two-up,
    .four-up,
    .checkbox-grid { grid-template-columns: 1fr; }
    .dropdown-checklist-panel { position: static; margin-top: 8px; }
    .label-preview-card { width: 100%; }
    .label-preview-frame { width: 100%; min-height: 250px; padding: 14px; overflow: auto; }
    .serial-label-mini-wrap { width: 370px; height: 217px; }
    .label-preview-frame .serial-label-format { transform: scale(0.794); transform-origin: top left; }
}

@media (max-width: 520px) {
    .logo-centre::before { width: 245px; height: 74px; }
    .app-logo { height: 44px; }
    .serial-label-mini-wrap { width: 326px; height: 191px; }
    .label-preview-frame .serial-label-format { transform: scale(0.70); transform-origin: top left; }
}

@media print {
    @page { size: 99.1mm 67.7mm; margin: 0; }

    html,
    body,
    body.label-print-body {
        width: 99.1mm !important;
        height: 67.7mm !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
    }

    .no-print,
    .app-header,
    .flash,
    .button-row.no-print,
    .print-preview-card { display: none !important; }

    .shell,
    .label-print-shell {
        max-width: none !important;
        width: 99.1mm !important;
        height: 67.7mm !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        background: #ffffff !important;
    }

    .label-preview-frame,
    .print-frame,
    .serial-label-mini-wrap {
        display: block !important;
        width: 99.1mm !important;
        height: 67.7mm !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #ffffff !important;
        overflow: visible !important;
    }

    .serial-label-format,
    .serial-label-print-size {
        width: 99.1mm !important;
        height: 67.7mm !important;
        min-width: 99.1mm !important;
        min-height: 67.7mm !important;
        padding: 6.8mm 7mm 5.2mm 8mm !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        color: #000000 !important;
        background: #ffffff !important;
        page-break-inside: avoid;
    }
    .serial-label-left { width: 58mm !important; }
    .label-product-title { font-size: 12.3pt !important; margin-bottom: 0.8mm !important; font-weight: 900 !important; }
    .label-line { font-size: 11.5pt !important; margin-bottom: 0.45mm !important; font-weight: 800 !important; }
    .label-line.small { font-size: 9.7pt !important; margin-bottom: 0.2mm !important; font-weight: 800 !important; }
    .label-spacer { height: 7mm !important; }
    .label-date { font-size: 10pt !important; margin-top: 4mm !important; font-weight: 800 !important; }
    .serial-label-right { top: 20mm !important; right: 8mm !important; width: 28mm !important; }
    .label-logo-image { width: 27mm !important; margin-bottom: 11mm !important; }
    .ce-image { width: 27mm !important; }
}

/* Password-protected customer deletion */
.danger-hero {
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.28), transparent 18rem),
        linear-gradient(135deg, #2b0710 0%, #7a1111 48%, #b42318 100%);
}

.delete-card {
    max-width: 980px;
    margin: 0 auto;
    border: 2px solid #f1a7a0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f6 100%);
}

.delete-summary-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(120px, 0.6fr));
    gap: 14px;
    margin: 18px 0;
}

.delete-summary-main,
.delete-summary-box {
    padding: 16px;
    border: 1px solid #f0b7af;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(180, 35, 24, 0.08);
}

.delete-summary-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.delete-summary-main strong {
    color: var(--navy-950);
    font-size: 1.25rem;
}

.delete-summary-main span,
.delete-summary-box span {
    color: var(--muted);
    font-weight: 800;
}

.delete-summary-box strong {
    display: block;
    margin-top: 8px;
    color: var(--red-600);
    font-size: 1.8rem;
}

.delete-warning-panel {
    color: #4d1110;
    background: linear-gradient(180deg, #fff4f2 0%, #ffe7e3 100%);
    border-color: #ee9f94;
}

.delete-warning-panel p { margin: 0; font-weight: 800; line-height: 1.55; }

.danger-btn,
.danger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 0;
    color: #ffffff !important;
    background: linear-gradient(135deg, #7a1111 0%, #b42318 100%);
    box-shadow: 0 10px 20px rgba(180, 35, 24, 0.22);
    cursor: pointer;
    font-weight: 900;
    text-decoration: none !important;
}

.danger-btn:hover,
.danger-link:hover { filter: brightness(1.06); transform: translateY(-1px); }

.action-stack { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.action-edit {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--navy-900);
    background: #e7f5ff;
    border: 1px solid #99c8ef;
    text-decoration: none !important;
}

.confirm-delete-row {
    margin-top: 12px;
    color: #4d1110;
    background: #fff7f6;
    border-color: #f0b7af;
}

@media (max-width: 900px) {
    .delete-summary-grid { grid-template-columns: 1fr; }
}

/* v13 contact updates */
.contact-phone {
    color: #0b4a6f;
    font-weight: 800;
}
.followup-panel {
    border-color: #90d1b9;
    background: linear-gradient(180deg, #ffffff 0%, #effff8 100%);
}

/* v16 customer quick lookup and paste sorter */
.paste-sort-panel {
    border: 2px solid #80caff;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 184, 230, 0.18), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #eaf8ff 100%);
}

.paste-sort-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 18px;
    align-items: stretch;
}

.paste-sort-grid textarea {
    min-height: 190px;
    border: 2px solid #9fd8ff;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.paste-actions-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #061a33 0%, #005eb8 100%);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 15px 35px rgba(0, 94, 184, 0.24);
}

.paste-actions-card strong {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.paste-actions-card p {
    margin: 0;
    color: #e8f7ff;
    line-height: 1.45;
}

.quick-customer-board {
    margin: 18px 0 22px;
    padding: 18px;
    border-radius: 20px;
    border: 2px solid #7bbff0;
    background:
        radial-gradient(circle at 0% 0%, rgba(19, 185, 129, 0.15), transparent 18rem),
        linear-gradient(135deg, #f7fcff 0%, #e8f6ff 100%);
    box-shadow: 0 18px 40px rgba(3, 16, 31, 0.12);
}

.quick-board-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.quick-board-header h4 {
    margin: 0 0 5px;
    color: #03101f;
    font-size: 1.2rem;
}

.quick-board-header p {
    margin: 0;
    color: #3b5168;
}

.recent-badge {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    color: #061a33;
    background: #fff2d8;
    border: 1px solid #f5bd4f;
    font-weight: 900;
}

.quick-search-field {
    margin-bottom: 14px;
}

.quick-search-field input {
    border: 2px solid #77a9d8;
    background: #ffffff;
}

.quick-customer-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
}

.quick-list-panel {
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.84);
    border: 1px solid #b8d3ee;
}

.quick-list-title {
    margin-bottom: 10px;
    color: #061a33;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.quick-customer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.all-customer-scroll {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 6px;
}

.compact-list {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 6px;
}

.quick-customer-item {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 13px;
    border: 1px solid #afd3f2;
    background: linear-gradient(180deg, #ffffff 0%, #f1f9ff 100%);
    color: #102033;
    box-shadow: 0 6px 18px rgba(3,16,31,0.08);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.quick-customer-item span {
    display: block;
    font-weight: 900;
}

.quick-customer-item small {
    display: block;
    margin-top: 4px;
    color: #526070;
}

.quick-customer-item:hover {
    transform: translateY(-1px);
    border-color: #005eb8;
    box-shadow: 0 10px 24px rgba(0,94,184,0.16);
}

.quick-customer-item.hidden {
    display: none;
}

.empty-mini {
    padding: 14px;
    border-radius: 12px;
    color: #526070;
    background: #f5fbff;
    border: 1px dashed #b8d3ee;
}

.quick-view-hero .quick-view-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.quick-detail-card h3 {
    margin-top: 0;
    color: #061a33;
}

.full-width-card {
    grid-column: 1 / -1;
}

.detail-list {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 8px 14px;
    margin: 0;
}

.detail-list dt {
    color: #526070;
    font-weight: 900;
}

.detail-list dd {
    margin: 0;
    color: #111827;
}

.address-box,
.notes-display {
    margin: 0;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #b8d3ee;
    background: #f7fcff;
    color: #111827;
    white-space: pre-wrap;
}

.notes-display {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

.quick-contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.full-contact-chip {
    min-height: 96px;
    justify-content: center;
}

.spaced-tags {
    margin-top: 16px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.summary-grid div {
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7fcff 0%, #e8f6ff 100%);
    border: 1px solid #b8d3ee;
}

.summary-grid span {
    display: block;
    color: #526070;
    font-weight: 900;
}

.summary-grid strong {
    display: block;
    margin-top: 5px;
    color: #03101f;
    font-size: 1.7rem;
}

@media (max-width: 1000px) {
    .paste-sort-grid,
    .quick-customer-split,
    .quick-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .quick-view-actions,
    .nav-links,
    .user-chip {
        display: none !important;
    }
}

/* v17 customer-name list replacement */
.customer-name-filter-bar {
    margin: 18px 0 16px;
    border: 2px solid #8fc9f2;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 167, 38, 0.15), transparent 18rem),
        linear-gradient(135deg, #f6fbff 0%, #e8f6ff 100%);
    box-shadow: 0 14px 32px rgba(3, 16, 31, 0.1);
}

.customer-name-list-card {
    margin-top: 14px;
    padding: 18px;
    border-radius: 20px;
    border: 2px solid #0b5ea8;
    background:
        radial-gradient(circle at 100% 0%, rgba(19, 185, 129, 0.12), transparent 18rem),
        linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
    box-shadow: 0 20px 45px rgba(3, 16, 31, 0.13);
}

.customer-name-list-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #c7dff5;
}

.customer-name-list-header h4 {
    margin: 0 0 5px;
    color: #03101f;
    font-size: 1.22rem;
}

.customer-name-list-header p {
    margin: 0;
    color: #40566f;
}

.list-count-badge {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    color: #06213d;
    background: #fff1d6;
    border: 1px solid #ffbf4d;
    font-weight: 900;
}

.customer-name-scroll-list {
    max-height: 560px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 8px 4px 0;
}

.customer-name-link {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #b8d3ee;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
    color: #061a33;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(3, 16, 31, 0.07);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.customer-name-link:hover,
.customer-name-link:focus {
    transform: translateY(-1px);
    border-color: #005eb8;
    background: linear-gradient(180deg, #ffffff 0%, #e8f6ff 100%);
    box-shadow: 0 12px 26px rgba(0, 94, 184, 0.17);
    outline: none;
}

.detail-summary-grid {
    margin-bottom: 16px;
}

.linked-signoff-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.linked-signoff-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.7fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #b8d3ee;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    color: #102033;
    text-decoration: none;
}

.linked-signoff-row:hover,
.linked-signoff-row:focus {
    border-color: #005eb8;
    box-shadow: 0 12px 24px rgba(0, 94, 184, 0.14);
    outline: none;
}

.linked-signoff-row strong,
.linked-signoff-row span,
.linked-signoff-row small {
    display: block;
}

.linked-signoff-row strong {
    color: #061a33;
}

.linked-signoff-row span {
    color: #40566f;
    font-weight: 800;
}

.linked-signoff-row small {
    margin-top: 4px;
    color: #526070;
}

.signoff-empty-note {
    margin-top: 12px;
}

@media (max-width: 760px) {
    .customer-name-list-header,
    .linked-signoff-row {
        display: block;
    }

    .list-count-badge {
        display: inline-block;
        margin-top: 10px;
    }

    .linked-signoff-row > div + div {
        margin-top: 10px;
    }
}


/* v20 service status and protected delete controls */
.metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.service-metric {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 45%, #e0f2fe 100%);
    border-color: #fb923c;
}

.status-service {
    background: #fff7ed;
    color: #9a3412;
    border-color: #fdba74;
}

.customer-name-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.customer-name-row + .customer-name-row {
    margin-top: 10px;
}

.customer-name-row .customer-name-link {
    min-width: 0;
}

.small-delete-link {
    padding: 10px 14px;
    min-height: auto;
    border-radius: 12px;
    font-size: 0.88rem;
    white-space: nowrap;
}

.quick-view-actions {
    flex-wrap: wrap;
}

@media (max-width: 760px) {
    .customer-name-row {
        grid-template-columns: 1fr;
    }

    .small-delete-link {
        text-align: center;
    }
}


/* Zebra ZM400 support */
.compact-buttons { justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.zebra-note,
.print-preview-card p { color: #26384e; font-weight: 700; line-height: 1.45; }
.label-print-actions .secondary-btn,
.label-print-actions .primary-btn { margin-bottom: 6px; }
@media print {
    .label-print-actions,
    .print-preview-card,
    .zebra-note { display: none !important; }
}

/* v22 order and supplier tracking fields */
.order-tracking-panel {
    border-color: rgba(0, 104, 179, 0.38);
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 55%, #eefbf7 100%);
}

.order-tracking-panel .panel-title::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 999px;
    background: #ff9f1c;
    box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.18);
}

.order-tracking-detail-card {
    border-left: 6px solid #0068b3;
    background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
}

.order-tracking-detail-card h3 {
    color: #003459;
}

@media (max-width: 760px) {
    .order-tracking-panel .field-grid.four-up {
        grid-template-columns: 1fr;
    }
}

/* v24 quoted-but-not-ordered section */
.metric-link {
    text-decoration: none;
    color: inherit;
}
.quoted-not-ordered-metric {
    border-color: #f59e0b !important;
    background: linear-gradient(135deg, #fff7ed, #fffbeb) !important;
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.18) !important;
}
.quoted-not-ordered-metric span {
    color: #92400e !important;
}
.quoted-not-ordered-metric strong {
    color: #b45309 !important;
}
.filter-explanation {
    border: 1px solid #f59e0b;
    background: #fffbeb;
    color: #78350f;
    border-radius: 16px;
    padding: 14px 16px;
    margin: 14px 0 16px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.15);
}

/* v24 quoted-but-not-ordered filter clarity */
.metric-card.metric-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.metric-card.metric-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 39, 83, 0.18);
    border-color: rgba(23, 130, 255, 0.55);
}

.quoted-not-ordered-metric {
    background: linear-gradient(135deg, #fff6dc 0%, #ffe2a8 100%);
    border-color: rgba(251, 166, 35, 0.65);
}

.active-filter-note {
    margin: 14px 0 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(251, 166, 35, 0.55);
    background: #fff7df;
    color: #1b2a3a;
    box-shadow: 0 10px 24px rgba(251, 166, 35, 0.12);
}

/* v26 WEEE weight tracking and label updates */
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.weee-main-btn {
    background: linear-gradient(135deg, #087f5b 0%, #16a34a 55%, #84cc16 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    box-shadow: 0 16px 30px rgba(22,163,74,0.26) !important;
}
.weee-main-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }

.serial-label-right { top: 60px; right: 30px; width: 138px; }
.label-logo-image { width: 110px; margin-bottom: 20px; }
.ce-image { width: 92px; margin-bottom: 9px; }
.weee-label-image {
    display: block;
    width: 126px;
    max-width: 100%;
    height: auto;
    margin-top: 5px;
    object-fit: contain;
    background: #ffffff;
}
.label-spacer { height: 18px; }

.weee-hero {
    background:
        radial-gradient(circle at 98% 10%, rgba(132, 204, 22, 0.32), transparent 18rem),
        linear-gradient(135deg, #043927 0%, #006241 52%, #008f66 100%);
}
.weee-summary-card {
    border: 2px solid #86efac;
    background:
        radial-gradient(circle at 100% 0%, rgba(132, 204, 22, 0.18), transparent 18rem),
        linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}
.weee-filter-form { margin-bottom: 18px; }
.weee-submit-field { justify-content: end; }
.weee-totals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 14px 0 18px;
}
.weee-total-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #bbf7d0;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(22, 101, 52, 0.10);
}
.weee-total-card span {
    display: block;
    color: #166534;
    font-weight: 900;
    margin-bottom: 8px;
}
.weee-total-card strong {
    color: #052e16;
    font-size: 2rem;
    font-weight: 950;
}
.weee-total-card.highlight {
    border-color: #22c55e;
    background: linear-gradient(135deg, #ecfdf5 0%, #dcfce7 100%);
}
.weee-total-card.warning {
    border-color: #fde68a;
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
}
.weee-total-card.warning span { color: #92400e; }
.weee-total-card.warning strong { color: #78350f; }
.weee-table-wrap tfoot th {
    background: #dcfce7;
    color: #064e3b;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .hero-actions { justify-content: flex-start; }
    .weee-totals-grid { grid-template-columns: 1fr; }
}

@media print {
    .serial-label-right { top: 13mm !important; right: 6.5mm !important; width: 30mm !important; }
    .label-logo-image { width: 27mm !important; margin-bottom: 5mm !important; }
    .ce-image { width: 23mm !important; margin-bottom: 2.5mm !important; }
    .weee-label-image { width: 29mm !important; margin-top: 1.5mm !important; }
    .label-spacer { height: 4.5mm !important; }
}

/* v27 edit/delete previous sign-offs */
.edit-signoff-card {
    border-color: rgba(0, 104, 179, 0.38);
    background: linear-gradient(135deg, #ffffff 0%, #f3fbff 58%, #ecfff7 100%);
}
.important-field input {
    border-color: #00a3c7;
    background: #f0fdff;
    box-shadow: 0 0 0 3px rgba(0, 179, 214, 0.08);
}
.save-row {
    margin-top: 18px;
}
.small-action {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.85rem;
    white-space: nowrap;
}
.signoff-delete-grid {
    grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(130px, 0.5fr));
}
.signoff-delete-table {
    margin: 18px 0;
}
.password-delete-field {
    max-width: 360px;
}
.confirm-delete-row {
    border-color: #f0b7af;
    background: #fff7f5;
    font-weight: 900;
}
@media (max-width: 900px) {
    .signoff-delete-grid {
        grid-template-columns: 1fr;
    }
}
.table-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.table-action-row .danger-link {
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 10px;
}

/* v28 enquiry type filters */
.customer-type-filter-panel {
    margin: 18px 0 24px;
    border: 2px solid rgba(0, 163, 199, 0.24);
    background:
        radial-gradient(circle at 98% 0%, rgba(34, 197, 94, 0.16), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f0f9ff 58%, #ecfeff 100%);
}
.customer-type-button-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.customer-type-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 76px;
    padding: 18px;
    border-radius: 18px;
    border: 2px solid rgba(0, 104, 179, 0.22);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    color: #05223f;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 44, 90, 0.10);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.customer-type-button:hover,
.customer-type-button.active-type {
    transform: translateY(-2px);
    border-color: #00a3c7;
    box-shadow: 0 18px 38px rgba(0, 104, 179, 0.18);
}
.customer-type-button span {
    font-weight: 950;
    font-size: 1.04rem;
}
.customer-type-button strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #003b69;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 950;
}
.customer-type-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-weight: 900;
    font-size: 0.86rem;
}
@media (max-width: 1100px) {
    .customer-type-button-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .customer-type-button-grid { grid-template-columns: 1fr; }
}
