/* Shared admin/backoffice design system, modeled on the NTOS Cloud
   reference dashboard: warm terracotta accent on a cream "paper" ground,
   white panels with soft borders + shadow, a light sidebar with a brand
   mark and signed-in user card. Both ntos_webshop_admin and
   ntos_webshop_backoffice render through this one stylesheet (see
   core/ui). The storefront has its own store.css and is unaffected. */
:root {
  /* Reference palette */
  --paper: #efece5;
  --panel: #ffffff;
  --panel-header: #eef1ee;
  --accent: #c9793d;
  --accent-contrast: #fff9f2;
  --teal: #3a7c82;
  --moss: #8a9459;
  --plum: #7a5f72;
  --gold: #b99a3b;
  --line: #ddd7ca;
  --text: #23262b;
  --muted: #736c60;
  --muted-2: #9a9284;
  --focus: #c9793d;
  --shadow: 0 1px 2px rgba(30, 42, 56, 0.06), 0 8px 24px -12px rgba(30, 42, 56, 0.18);
  --danger-bg: #fdecea;
  --danger-border: #f0bdb9;
  --danger-text: #8a2f22;
  --danger: #c0392b;
  --warn-bg: #fbf1d8;
  --warn-border: #e8cf8e;
  --warn-text: #6b5514;
  --success-bg: #e7efdd;
  --success: #5b7b3a;

  /* Legacy aliases: existing templates/JS reference these names, so they
     stay valid and simply inherit the new palette. */
  --color-bg: var(--paper);
  --color-surface: var(--panel);
  --color-border: var(--line);
  --color-text: var(--text);
  --color-muted: var(--muted);
  --color-primary: var(--accent);
  --color-primary-contrast: var(--accent-contrast);
  --color-danger: var(--danger);
  --color-success: var(--success);

  --radius: 10px;    /* panels / cards */
  --radius-sm: 6px;  /* buttons / inputs / small chips */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #151b23;
    --panel: #1b232d;
    --panel-header: #212a35;
    --accent: #dd9257;
    --accent-contrast: #fff9f2;
    --teal: #5aa8ac;
    --moss: #a8b579;
    --plum: #a084a3;
    --gold: #d3b45c;
    --line: #2b3542;
    --text: #e9e5db;
    --muted: #a49c8d;
    --muted-2: #7c7568;
    --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 12px 28px -14px rgba(0,0,0,0.55);
    --danger-bg: #3a2220;
    --danger-border: #5c3630;
    --danger-text: #f2b3a9;
    --warn-bg: #362e17;
    --warn-border: #5a4b24;
    --warn-text: #e8cf8e;
    --success-bg: #22301a;
    --success: #a8b579;
  }
}
:root[data-theme="dark"] {
  --paper: #151b23; --panel: #1b232d; --panel-header: #212a35; --accent: #dd9257;
  --accent-contrast: #fff9f2; --teal: #5aa8ac; --moss: #a8b579; --plum: #a084a3;
  --gold: #d3b45c; --line: #2b3542; --text: #e9e5db; --muted: #a49c8d; --muted-2: #7c7568;
  --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 12px 28px -14px rgba(0,0,0,0.55);
  --danger-bg: #3a2220; --danger-border: #5c3630; --danger-text: #f2b3a9;
  --warn-bg: #362e17; --warn-border: #5a4b24; --warn-text: #e8cf8e;
  --success-bg: #22301a; --success: #a8b579;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Tabular monospace for figures/timestamps, matching the reference. */
.num { font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace; font-variant-numeric: tabular-nums; }

a { color: var(--accent); }

h1, h2, h3 { margin: var(--space-4) 0 var(--space-3) 0; line-height: 1.3; letter-spacing: -0.01em; }
h1 { font-size: 1.15rem; font-weight: 700; }
h2 { font-size: 1rem; font-weight: 700; }
h1:first-child, h2:first-child, h3:first-child { margin-top: 0; }
p { margin: 0 0 var(--space-3) 0; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

.list-header { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--line); }
.list-header h1 { margin: 0; }

/* ---- App shell: fixed 244px sidebar + fluid main. Flex (not grid) so a
   page without a sidebar (e.g. login) still lets main fill the width. ---- */
.app-shell {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

.container {
  flex: 1;
  min-width: 0;
  padding: var(--space-4) 26px 52px;
}
.container-wide { /* no-op now that content is fluid; kept for compatibility */ }

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); align-items: start; }
@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; }
}

/* Main content (e.g. order items) on the left, secondary detail cards
   (e.g. delivery/billing/payment) stacked on the right - evenly balanced
   columns rather than a narrow fixed sidebar. */
/* .order-detail-sidebar itself needs no flex/gap - its .card children
   already space themselves via .card's own margin-bottom. */
.order-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); align-items: start; }
@media (max-width: 900px) {
  .order-detail-layout { grid-template-columns: 1fr; }
}

/* ---- Sidebar ---- */
.sidebar {
  width: 244px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--panel);
  color: var(--muted);
  border-right: 1px solid var(--line);
  padding: 20px 14px;
}

.brand { display: flex; align-items: center; gap: 10px; padding: 0 4px; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--accent), var(--teal));
  display: grid; place-items: center; font-weight: 800; font-size: 13px; color: var(--accent-contrast);
}
.brand-name { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); }
.brand-sub { font-size: 10.5px; color: var(--muted-2); }

.user-card { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--panel-header); border-radius: var(--radius); }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, var(--teal), var(--plum));
  display: grid; place-items: center; font-size: 12.5px; font-weight: 700; color: #fff;
}
.user-meta { min-width: 0; flex: 1; }
.user-hi { font-size: 10.5px; color: var(--muted-2); }
.user-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logout-btn { border: none; background: none; color: var(--muted-2); cursor: pointer; padding: 4px; display: grid; place-items: center; }
.logout-btn:hover { color: var(--text); }
.logout-btn svg { width: 15px; height: 15px; stroke: currentColor; }

.sidebar-nav { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; }
/* A labeled group's header is a shaded, clickable pill (see base.js's
   click-to-collapse handler). A group with no Label (nav.html omits the
   button entirely for those, e.g. the backoffice's trailing Settings/
   Users group) has no .sidebar-group-toggle to match below, so its items
   render flush with no indent and no collapse behavior. */
.sidebar-group-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--panel-header); border: none; border-radius: var(--radius-sm);
  padding: 8px 10px; margin-bottom: 4px; cursor: pointer;
  font: inherit; font-size: 12px; font-weight: 700; color: var(--text); text-align: left;
}
.sidebar-group-toggle .chevron { width: 14px; height: 14px; flex-shrink: 0; color: var(--muted); transition: transform 0.15s ease; }
.sidebar-group.collapsed .sidebar-group-toggle .chevron { transform: rotate(-90deg); }
.sidebar-group.collapsed .sidebar-links { display: none; }
.sidebar-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.sidebar-group-toggle + .sidebar-links { padding-left: 8px; }
.nav-item, .sidebar-links a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; text-decoration: none; color: var(--muted); cursor: pointer;
}
.nav-item:hover, .sidebar-links a:hover { background: rgba(0,0,0,0.045); color: var(--text); }
.nav-item.current, .sidebar-links a.active { background: var(--accent); color: var(--accent-contrast); font-weight: 600; }

.sidebar-foot { display: flex; align-items: center; gap: 8px; padding: 10px; border-top: 1px solid var(--line); font-size: 11px; color: var(--muted-2); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--moss); flex-shrink: 0; }

/* ---- Buttons ---- */
button, .btn, input[type="submit"] {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-contrast);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s, border-color 0.15s;
}
button:hover, .btn:hover, input[type="submit"]:hover { filter: brightness(1.06); }

button.secondary, .btn.secondary {
  background: var(--panel);
  color: var(--text);
  border-color: var(--line);
  font-weight: 500;
}
button.secondary:hover, .btn.secondary:hover { filter: none; border-color: var(--muted-2); }

button.danger, .btn.danger, button.delete-btn, .btn.delete { background: var(--danger); border-color: var(--danger); color: var(--accent-contrast); }
button.success, .btn.success { background: var(--success); border-color: var(--success); color: var(--accent-contrast); }

/* ---- Cards / panels ---- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

.order-summary {
  display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-1);
  margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--line);
}
.order-summary-row { margin: 0; color: var(--muted); }
.order-summary-total { margin: 0; font-weight: 700; font-size: 1.1rem; }

.empty-state { color: var(--muted-2); font-size: 0.9rem; }

/* ---- Flash messages ---- */
.flash { padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: var(--space-3); font-size: 13px; border: 1px solid transparent; }
.flash-success { background: var(--success-bg); border-color: color-mix(in srgb, var(--success) 45%, transparent); color: var(--success); }
.flash-error { background: var(--danger-bg); border-color: var(--danger-border); color: var(--danger-text); }
.flash-info { background: var(--panel-header); border-color: var(--line); color: var(--muted); }

/* ---- Persistent callout ---- */
/* Same look as .flash-info but deliberately NOT .flash - base.js
   auto-hides every .flash element after 6 seconds, which is wrong for
   content that isn't a one-time notification (e.g. an order's customer
   note, always relevant while the page is open). */
.callout-info { padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: var(--space-3); font-size: 13px; border: 1px solid var(--line); background: var(--panel-header); color: var(--muted); }

/* ---- Pagination ---- */
.pagination { display: flex; gap: var(--space-2); align-items: center; margin-top: var(--space-4); flex-wrap: wrap; }
.pagination a, .pagination span { padding: 5px 10px; border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; color: var(--text); font-size: 13px; background: var(--panel); }
.pagination a:hover { border-color: var(--muted-2); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: var(--accent-contrast); font-weight: 600; }
.pagination-status { color: var(--muted); font-size: 0.9rem; border: none; background: none; padding: 0; }
.pagination-disabled { color: var(--muted-2); opacity: 0.6; }

/* ---- Tabs ----
   Main tabs are a glossy segmented control: connected chips with rounded tops,
   a reflective top-to-bottom gradient, single-line dividers between them, and a
   solid accent fill on the active tab. Every .tab-bar carries a bottom baseline
   line the tabs sit on. The opening-hours pages stack two bars: the first
   (.kind-tabs, or any single bar elsewhere) is the glossy main tab; the second
   (.view-tabs) is overridden to a lighter underline sub-tab row, kept clearly
   separate by the main bar's baseline divider above it. */
.tab-bar { display: flex; margin-bottom: var(--space-4); border-bottom: 1px solid var(--line); }

.tab-bar:not(.view-tabs) .tab {
  position: relative;
  padding: 9px 18px; font-weight: 600; font-size: 13.5px; line-height: 1.2; text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line); border-radius: 8px 8px 0 0;
  margin-right: -1px; /* overlap so adjacent borders read as one divider */
  background: linear-gradient(to bottom, #ffffff 0%, #f4f1ec 47%, #e4dfd4 53%, #efece5 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.tab-bar:not(.view-tabs) .tab:hover { color: var(--text); }
.tab-bar:not(.view-tabs) .tab.active {
  z-index: 2; color: #fff; border-color: #a75f28;
  background: linear-gradient(to bottom, #edb98c 0%, #db9152 46%, #c9793d 54%, #b96d31 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
  text-shadow: 0 1px 1px rgba(0,0,0,0.28);
}

/* Sub-tabs (opening-hours .view-tabs): lighter flat underline row. */
.tab-bar.view-tabs { margin-top: calc(var(--space-2) * -1); }
.tab-bar.view-tabs .tab {
  padding: 6px 2px; margin-right: 18px; margin-bottom: -1px;
  border: 0; border-bottom: 2px solid transparent; border-radius: 0;
  background: none; box-shadow: none; text-shadow: none;
  color: var(--muted); font-weight: 500; font-size: 12.5px; line-height: 1.3; text-decoration: none;
}
.tab-bar.view-tabs .tab:hover { color: var(--text); }
.tab-bar.view-tabs .tab.active { color: var(--text); border-bottom-color: var(--accent); }

/* Dark-mode gloss for the main tabs (sub-tabs are token-based, no override
   needed). Mirrors the token dark blocks: system-dark unless forced light,
   plus the explicit data-theme="dark" toggle. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tab-bar:not(.view-tabs) .tab {
    background: linear-gradient(to bottom, #2a3541 0%, #232c37 47%, #1a222c 53%, #1b232d 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  }
  :root:not([data-theme="light"]) .tab-bar:not(.view-tabs) .tab.active {
    border-color: #8a5324;
    background: linear-gradient(to bottom, #e5a266 0%, #dd9257 46%, #c67c40 54%, #b56d33 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.30);
  }
}
:root[data-theme="dark"] .tab-bar:not(.view-tabs) .tab {
  background: linear-gradient(to bottom, #2a3541 0%, #232c37 47%, #1a222c 53%, #1b232d 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
:root[data-theme="dark"] .tab-bar:not(.view-tabs) .tab.active {
  border-color: #8a5324;
  background: linear-gradient(to bottom, #e5a266 0%, #dd9257 46%, #c67c40 54%, #b56d33 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30);
}

/* ---- Marquee preview (Header > Marquee) - mirrors the storefront's
   .marquee-scroll/.marquee-fade/.marquee-slide/.marquee-static in store.css,
   same class names/keyframes so the effect matches; colors come from the
   inline style set by the Marquee tab (its Page Header bg/text). ---- */
.marquee { overflow: hidden; }
.marquee-inner { padding: var(--space-2) var(--space-4); }

.marquee-scroll .marquee-inner { white-space: nowrap; }
.marquee-scroll .marquee-track { display: inline-flex; gap: var(--space-5); padding-left: 100%; animation: marquee-scroll-move 22s linear infinite; }
.marquee-scroll .marquee-line { white-space: nowrap; }
@keyframes marquee-scroll-move {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.marquee-fade .marquee-inner, .marquee-slide .marquee-inner { min-height: 1.4em; }
.marquee-fade .marquee-track, .marquee-slide .marquee-track { position: relative; height: 1.4em; }
.marquee-fade .marquee-line, .marquee-slide .marquee-line {
  position: absolute; left: 0; right: 0; opacity: 0;
  animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}

.marquee-track[data-lines="2"] .marquee-line { animation-duration: 8s; }
.marquee-track[data-lines="2"] .marquee-line:nth-child(1) { animation-delay: 0s; }
.marquee-track[data-lines="2"] .marquee-line:nth-child(2) { animation-delay: 4s; }
.marquee-fade .marquee-track[data-lines="2"] .marquee-line { animation-name: marquee-fade-cycle-2; }
.marquee-slide .marquee-track[data-lines="2"] .marquee-line { animation-name: marquee-slide-cycle-2; }

.marquee-track[data-lines="3"] .marquee-line { animation-duration: 12s; }
.marquee-track[data-lines="3"] .marquee-line:nth-child(1) { animation-delay: 0s; }
.marquee-track[data-lines="3"] .marquee-line:nth-child(2) { animation-delay: 4s; }
.marquee-track[data-lines="3"] .marquee-line:nth-child(3) { animation-delay: 8s; }
.marquee-fade .marquee-track[data-lines="3"] .marquee-line { animation-name: marquee-fade-cycle-3; }
.marquee-slide .marquee-track[data-lines="3"] .marquee-line { animation-name: marquee-slide-cycle-3; }

@keyframes marquee-fade-cycle-2 {
  0% { opacity: 0; }
  3%, 47% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes marquee-fade-cycle-3 {
  0% { opacity: 0; }
  2%, 31.33% { opacity: 1; }
  33.33%, 100% { opacity: 0; }
}
@keyframes marquee-slide-cycle-2 {
  0% { opacity: 0; transform: translateY(100%); }
  3%, 47% { opacity: 1; transform: translateY(0); }
  50%, 100% { opacity: 0; transform: translateY(-100%); }
}
@keyframes marquee-slide-cycle-3 {
  0% { opacity: 0; transform: translateY(100%); }
  2%, 31.33% { opacity: 1; transform: translateY(0); }
  33.33%, 100% { opacity: 0; transform: translateY(-100%); }
}

.marquee-static .marquee-inner { min-height: 0; }
.marquee-static .marquee-track { position: static; height: auto; }
.marquee-static .marquee-line { position: static; opacity: 1; animation: none; }

/* ---- Dashboard (backoffice "/" landing page) ---- */
.dash-header { margin-bottom: var(--space-3); }
.dash-header h1 { margin-bottom: 2px; }
.dash-sub { color: var(--muted); font-size: 13px; margin: 0; }

.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-3); margin-bottom: var(--space-3); }
.dash-stat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: var(--space-3); }
.dash-stat-label { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.03em; }
.dash-stat-value { font-size: 1.6rem; font-weight: 700; line-height: 1.2; margin-top: 2px; }
.dash-stat-sub { font-size: 11px; color: var(--muted-2); margin-top: 2px; }

.dash-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.dash-action { border-radius: 999px; padding: 8px 18px; }

.dash-card-head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-3); flex-wrap: wrap; }
.dash-card-head h2 { margin: 0; }
.dash-card-hint { font-size: 11px; color: var(--muted-2); white-space: nowrap; }

.dash-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 200px;
  padding-top: var(--space-2); border-bottom: 1px solid var(--line); overflow-x: auto;
}
.dash-chart-col { flex: 1 0 auto; min-width: 14px; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 4px; }
.dash-chart-stack {
  width: 100%; max-width: 26px; height: 100%; flex: 1;
  display: flex; flex-direction: column-reverse;
  background: var(--panel-header); border-radius: 3px 3px 0 0; overflow: hidden;
}
.dash-chart-seg { width: 100%; }
.dash-chart-label { font-size: 10px; color: var(--muted-2); white-space: nowrap; }

.dash-legend-list { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-3); font-size: 12px; color: var(--muted); }
.dash-legend-list li { display: flex; align-items: center; gap: 6px; }
.dash-legend-inline { margin-top: var(--space-2); }
.dash-legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dash-legend-pct { color: var(--muted-2); margin-left: 2px; }

.dash-barlist { display: flex; flex-direction: column; gap: var(--space-2); }
.dash-barlist-row { display: grid; grid-template-columns: 130px 1fr 36px; align-items: center; gap: var(--space-2); font-size: 13px; }
.dash-barlist-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dash-barlist-track { background: var(--panel-header); border-radius: 999px; height: 8px; overflow: hidden; }
.dash-barlist-fill { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.dash-barlist-value { text-align: right; color: var(--muted); }

.dash-muted { color: var(--muted-2); font-size: 12px; }
.dash-table-date { color: var(--muted); font-size: 12px; white-space: nowrap; }

.dash-donut-row { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.dash-donut-wrap { position: relative; width: 140px; height: 140px; flex-shrink: 0; }
.dash-donut { width: 100%; height: 100%; }
.dash-donut-track { stroke: var(--line); stroke-width: 6; }
.dash-donut-total {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.dash-donut-total-value { font-size: 1.3rem; font-weight: 700; line-height: 1.1; }
.dash-donut-total-label { font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.03em; }

/* ---- Mobile: stack the sidebar above the content ---- */
@media (max-width: 860px) {
  .app-shell { flex-direction: column; }
  .sidebar { width: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .sidebar-nav { max-height: 40vh; }
  .container { padding: var(--space-3) 14px 40px; }
}
