:root {
  --grid-border: var(--pico-muted-border-color);
  --slot-busy-bg: color-mix(in srgb, var(--pico-muted-color) 18%, transparent);
  --slot-free-hover: color-mix(in srgb, var(--pico-primary) 12%, transparent);
}

/* Centred centre name. With no right-hand label anymore the name gets the full
   width, and long names WRAP onto a second line rather than truncating with an
   ellipsis — the owner would rather see the whole name than a "test c…". */
.site-header nav { flex-wrap: nowrap; justify-content: center; }
.site-header nav ul { min-width: 0; }
.site-header nav ul a {
  display: inline-block; max-width: 100%;
  white-space: normal; overflow-wrap: break-word; text-align: center;
  line-height: 1.2; vertical-align: bottom;
}

/* Demo-tenant banner — yellow stripe above the header to signal that this
   site is a demonstration only. Rendered when tenant.slug === 'demo'. */
.demo-banner {
  background: #fff3cd;
  border-bottom: 1px solid #ffeeba;
  color: #856404;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}
.demo-banner strong {
  letter-spacing: 0.04em;
  margin-right: 0.4rem;
}

.week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.week-nav .week-label {
  margin: 0;
  font-size: 1.125rem;
  text-align: center;
  flex: 1 1 auto;
}
.week-nav a[role="button"] { margin: 0; flex: 0 0 auto; }

.grid-wrap { overflow-x: auto; }

/* Room tabs — binder-style: selectors sit close together at the left, and the
   active room's tab fuses into the timetable below it (like a divider tab on a
   binder). Pico's nav{justify-content:space-between} is overridden here, else
   the tabs fling to opposite edges. */
.room-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.4rem;
  margin: 1.25rem 0 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--grid-border);
}
.room-tab {
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  border: 1px solid var(--grid-border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  color: var(--ink-soft);
  background: var(--cream-deep);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: -1px;
  transition: color 120ms ease, background 120ms ease;
}
.room-tab:hover,
.room-tab:focus-visible {
  color: var(--ink);
  background: var(--paper);
  outline: none;
}
/* Active tab brought forward: same fill as the page below, and its bottom
   border is painted page-colour so it sits over the strip's border = fused. */
.room-tab.active {
  color: var(--green);
  font-weight: 600;
  background: var(--cream);
  border-bottom: 1px solid var(--cream);
}

/* Day picker — hidden on desktop, flex on mobile (defined in media query) */
.day-picker { display: none; }
.day-tab {
  flex: 0 0 auto;
  min-width: 4.5rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--grid-border);
  background: var(--pico-card-sectioning-background-color);
  border-radius: 6px;
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  color: var(--pico-color);
}
.day-tab.active {
  background: var(--pico-primary);
  color: var(--pico-primary-inverse, white);
  border-color: var(--pico-primary);
}
.day-tab.active small { color: inherit; }

/* Visually-hidden text (a11y) — keeps aria semantics without painting glyphs */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
  border: 0;
}

/* Responsive data table — collapses to card-per-row on small viewports.
   Apply class="responsive-table" + data-label="…" on each <td>. */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table th,
.responsive-table td {
  border-bottom: 1px solid var(--grid-border);
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}
.responsive-table thead th {
  background: var(--pico-card-sectioning-background-color);
}
@media (max-width: 640px) {
  .responsive-table { border: none; }
  .responsive-table thead { display: none; }
  .responsive-table tbody tr {
    display: block;
    border: 1px solid var(--grid-border);
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.6rem;
  }
  .responsive-table td {
    display: block;
    border: none;
    padding: 0.15rem 0;
  }
  .responsive-table td[data-label]::before {
    content: attr(data-label) ": ";
    font-weight: 600;
    color: var(--pico-muted-color);
    display: inline-block;
    min-width: 6rem;
  }
}

/* Timetable */
:root {
  --grid-line-weak: color-mix(in srgb, var(--pico-muted-border-color) 50%, transparent);
  --grid-line-strong: var(--pico-muted-border-color);
  --today-tint: color-mix(in srgb, var(--pico-primary) 5%, transparent);
  --booked-bg: color-mix(in srgb, var(--pico-primary) 85%, transparent);
  --booked-fg: var(--pico-primary-inverse, #fff);
  --free-hover: color-mix(in srgb, var(--pico-primary) 9%, transparent);
}
.timetable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.85rem;
  min-width: 760px;
  table-layout: fixed;
}
.timetable th,
.timetable td {
  padding: 0;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid var(--grid-line-weak);
}
.timetable th:last-child,
.timetable td:last-child { border-right: none; }
.timetable thead th {
  background: var(--pico-card-sectioning-background-color);
  font-weight: 600;
  padding: 0.6rem 0.4rem;
  line-height: 1.25;
  border-bottom: 1px solid var(--grid-line-strong);
  position: relative;
}
.timetable thead th.today {
  background: var(--today-tint);
  color: var(--pico-primary);
}
.timetable thead th .today-badge {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pico-primary);
  margin-left: 0.4rem;
  vertical-align: middle;
}
.timetable th.time-col {
  background: var(--pico-card-sectioning-background-color);
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.6rem;
  font-variant-numeric: tabular-nums;
  width: 4.25rem;
  font-size: 0.78rem;
  color: var(--pico-muted-color);
  border-right: 1px solid var(--grid-line-strong);
}
/* Hour rows get a stronger top edge than half-hour rows */
.timetable tr.row-hour > td,
.timetable tr.row-hour > th { border-top: 1px solid var(--grid-line-strong); }
.timetable tr.row-half > td,
.timetable tr.row-half > th { border-top: 1px solid var(--grid-line-weak); }
.timetable tr.row-hour > th.time-col { padding-top: 0.15rem; }

/* Today column subtle tint behind every cell */
.timetable td.today { background: var(--today-tint); }

/* Empty cell: no text, tactile hover */
.timetable td.free a {
  display: block;
  height: 100%;
  min-height: 1.85rem;
  text-decoration: none;
  transition: background 80ms ease;
}
.timetable td.free a:hover,
.timetable td.free a:focus-visible {
  background: var(--free-hover);
  outline: none;
}
.timetable td.today.free a:hover,
.timetable td.today.free a:focus-visible {
  background: color-mix(in srgb, var(--pico-primary) 14%, transparent);
}

/* Busy: rounded coloured block spanning contiguous slots */
.timetable td.busy {
  background: var(--booked-bg);
  color: var(--booked-fg);
}
.timetable td.busy-start {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
/* A booking that runs to the last slot of the day still wants a rounded foot.
   We approximate by rounding the bottom of every busy cell that ISN'T followed
   by another busy in the same column — handled cheaply with :last-child. */
.timetable td.busy-cont {
  border-top-color: transparent;
}
/* Two back-to-back bookings stacked in one column must read as two blocks, not
   one green mass: a busy block that starts directly below another booking gets a
   clear gap in the page background colour above it. */
.timetable tr > td.busy-start {
  border-top: 2px solid var(--pico-background-color);
}
/* Past slots are shown for context but aren't bookable (no link is rendered);
   tint them so they read as unavailable rather than empty/bookable. */
.timetable td.past {
  background: rgba(120, 120, 120, 0.1);
  cursor: default;
}
.timetable td.busy-start .busy-label {
  display: block;
  padding: 0.35rem 0.45rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

/* Helper line under a form control / submit button (e.g. explaining why the
   submit button is disabled until the form is complete). */
.form-hint {
  display: block;
  margin-top: 0.4rem;
  color: var(--pico-muted-color);
  font-size: 0.85rem;
}

/* Mobile: hide thead (day picker is the sole "which day" affordance) +
   single-day view */
@media (max-width: 600px) {
  .day-picker {
    display: flex;
    gap: 0.3rem;
    margin: 0.75rem 0 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }
  /* All 7 days share the width so Sat/Sun are never clipped. (F2) */
  .day-tab { flex: 1 1 0; min-width: 0; padding: 0.5rem 0.15rem; font-size: 0.78rem; }
  /* Intentional 2-row week nav: centred date on top, [Prev] [Next] below —
     instead of a broken left-aligned vertical stack. (F1) */
  .week-nav { flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; }
  .week-nav .week-label { order: -1; flex: 1 0 100%; text-align: center; font-size: 1rem; }
  .week-nav a[role="button"] { flex: 1 1 auto; text-align: center; }
  .timetable { min-width: 0; font-size: 0.95rem; }
  .timetable thead { display: none; }
  .timetable [data-day]:not(.day-visible) { display: none; }
  .timetable th.time-col { width: 4.25rem; padding: 0 0.6rem; font-size: 0.8rem; }
  .timetable td.free a { min-height: 2.4rem; }
  .timetable td.busy-start .busy-label { padding: 0.55rem 0.7rem; font-size: 0.9rem; }
  /* Hide booked-cell continuation borders for cleaner mobile blocks */
  .timetable td.busy-cont { border-top: none; }
}

ul.slot-list,
ul.slot-list li {
  list-style: none;
  list-style-type: none;
}
ul.slot-list li::marker { content: ''; }
ul.slot-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}
.slot-busy {
  background: var(--slot-busy-bg);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}
.slot-free {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border: 1px dashed var(--grid-border);
  border-radius: 4px;
  color: var(--pico-muted-color);
  text-decoration: none;
  font-size: 0.85rem;
}
.slot-free:hover,
.slot-free:focus {
  background: var(--slot-free-hover);
  color: var(--pico-primary);
  border-color: var(--pico-primary);
}

@media (max-width: 720px) {
  /* Keep min-width so .grid-wrap's overflow-x: auto kicks in and the
     rightmost room column stays reachable by horizontal scroll. */
  .booking-grid .day-col { width: auto; }
  .booking-grid th,
  .booking-grid td { padding: 0.4rem; font-size: 0.85rem; }
}

ul.slot-picker {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
  gap: 0.5rem;
}
ul.slot-picker li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
ul.slot-picker li::marker { content: ''; }
ul.slot-picker .slot-busy,
ul.slot-picker .slot-free {
  display: block;
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}
ul.slot-picker .slot-busy {
  background: color-mix(in srgb, #c62828 7%, var(--pico-card-sectioning-background-color));
  color: var(--pico-muted-color);
  border: 1px solid color-mix(in srgb, #c62828 22%, transparent);
}
ul.slot-picker .slot-free {
  border: 1px dashed var(--grid-border);
  color: var(--pico-color);
  text-decoration: none;
}

.success-banner {
  background: color-mix(in srgb, var(--pico-color-jade-500, #00897b) 12%, transparent);
  border-left: 4px solid var(--pico-color-jade-500, #00897b);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.success-banner h2 { margin-top: 0; }

.error-message {
  background: color-mix(in srgb, var(--pico-del-color, #c62828) 10%, transparent);
  border-left: 4px solid var(--pico-del-color, #c62828);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
}

.price-summary {
  background: var(--pico-card-sectioning-background-color);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin: 1rem 0;
}

dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.25rem 1.5rem;
  margin: 1rem 0;
}
dl dt { color: var(--pico-muted-color); }
dl dd { margin: 0; }

/* Admin nav as a wrapping pill bar with real tap targets. font-size:0 on the
   container collapses the literal "·" separators + whitespace from the markup;
   each link restores its own font-size. (visual-review F4) */
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grid-border);
  font-size: 0;
}
.admin-nav a {
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--pico-card-sectioning-background-color);
  border: 1px solid var(--grid-border);
  color: var(--pico-color);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.admin-nav a:hover,
.admin-nav a:focus-visible { border-color: var(--pico-primary); color: var(--pico-primary); }
.admin-nav a[aria-current="page"] {
  background: var(--pico-primary);
  border-color: var(--pico-primary);
  color: var(--pico-primary-inverse, #fff);
}
.admin-nav a[aria-current="page"] strong { color: inherit; font-weight: 600; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--grid-border);
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}
.admin-table thead th {
  background: var(--pico-card-sectioning-background-color);
}
.admin-table tr.date-group td {
  background: var(--pico-card-sectioning-background-color);
  font-weight: 600;
  border-top: 2px solid var(--grid-border);
}

/* Mobile: collapse admin tables into a card-per-row layout. */
@media (max-width: 640px) {
  .admin-table { border: none; }
  .admin-table thead { display: none; }
  .admin-table tbody tr {
    display: block;
    border: 1px solid var(--grid-border);
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.6rem;
  }
  .admin-table tbody tr.date-group {
    display: block;
    background: var(--pico-card-sectioning-background-color);
    border: none;
    border-radius: 0;
    padding: 0.4rem 0.75rem;
    margin: 0.75rem 0 0.4rem;
    font-weight: 600;
  }
  .admin-table tbody tr.date-group td {
    display: block;
    border: none;
    padding: 0;
    background: transparent;
    font-weight: 600;
  }
  .admin-table tbody tr.date-group td::before { content: none; }
  .admin-table td {
    display: block;
    border: none;
    padding: 0.15rem 0;
  }
  .admin-table td[data-label]::before {
    content: attr(data-label) ": ";
    font-weight: 600;
    color: var(--pico-muted-color);
    display: inline-block;
    min-width: 5.5rem;
  }
}

.admin-form .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 0.75rem;
}
.admin-form button { margin-top: 0.5rem; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--pico-primary);
  outline-offset: 2px;
}

/* Legal pages (terms, privacy) — slight typography bump for older readers */
.legal-content { font-size: 1.0625rem; line-height: 1.6; }
.legal-content p,
.legal-content li,
.legal-content dd,
.legal-content small { font-size: inherit; }
.legal-content h3 { margin-top: 1.75rem; }

/* Recurring-rule grouping by label — coloured left accent stripe.
   Palette of 8 cycles; same label always gets same colour, distinct labels
   get distinct colours, so duplicate-label rows are visually grouped. */
.admin-table tr.label-c0 td:first-child { border-left: 4px solid #1976d2; padding-left: 0.6rem; }
.admin-table tr.label-c1 td:first-child { border-left: 4px solid #388e3c; padding-left: 0.6rem; }
.admin-table tr.label-c2 td:first-child { border-left: 4px solid #f57c00; padding-left: 0.6rem; }
.admin-table tr.label-c3 td:first-child { border-left: 4px solid #7b1fa2; padding-left: 0.6rem; }
.admin-table tr.label-c4 td:first-child { border-left: 4px solid #c62828; padding-left: 0.6rem; }
.admin-table tr.label-c5 td:first-child { border-left: 4px solid #00838f; padding-left: 0.6rem; }
.admin-table tr.label-c6 td:first-child { border-left: 4px solid #5d4037; padding-left: 0.6rem; }
.admin-table tr.label-c7 td:first-child { border-left: 4px solid #455a64; padding-left: 0.6rem; }

@media (max-width: 640px) {
  .admin-table tbody tr.label-c0 { border-left: 4px solid #1976d2; }
  .admin-table tbody tr.label-c1 { border-left: 4px solid #388e3c; }
  .admin-table tbody tr.label-c2 { border-left: 4px solid #f57c00; }
  .admin-table tbody tr.label-c3 { border-left: 4px solid #7b1fa2; }
  .admin-table tbody tr.label-c4 { border-left: 4px solid #c62828; }
  .admin-table tbody tr.label-c5 { border-left: 4px solid #00838f; }
  .admin-table tbody tr.label-c6 { border-left: 4px solid #5d4037; }
  .admin-table tbody tr.label-c7 { border-left: 4px solid #455a64; }
}

/* Booking confirm dialog (fat-finger guard): slides up from the bottom on
   mobile, centred card on desktop. Big touch targets. */
.cf-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 30, 25, .5);
  display: flex; align-items: flex-end; justify-content: center;
}
.cf-dialog {
  background: var(--pico-background-color, #fff);
  width: 100%; max-width: 440px;
  border-radius: 16px 16px 0 0;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .25);
}
.cf-dialog h3 { margin: 0 0 0.25rem; }
.cf-sub { color: var(--pico-muted-color); font-size: 0.9rem; margin: 0 0 1rem; }
.cf-field { display: block; margin-bottom: 0.85rem; font-weight: 600; font-size: 0.9rem; }
.cf-field select { width: 100%; margin-top: 0.3rem; margin-bottom: 0; font-size: 1rem; min-height: 2.9rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.cf-err { color: #b3261e; font-size: 0.85rem; margin: 0 0 0.75rem; }
.cf-actions { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.cf-actions button { flex: 1; min-height: 3rem; margin: 0; }
.cf-go {
  background: var(--pico-primary); color: var(--pico-primary-inverse, #fff);
  border: 1px solid var(--pico-primary); border-radius: 8px; font-weight: 600;
}
body.cf-open { overflow: hidden; }
@media (min-width: 600px) {
  .cf-overlay { align-items: center; padding: 24px; }
  .cf-dialog { border-radius: 16px; }
}

/* ============================================================================
   HALLA BRAND LAYER
   The booking + admin pages are built on Pico CSS. We remap Pico's design
   tokens to the Halla palette (the same cream/green/serif as the marketing
   site) so the whole product looks like one thing. Appended last so it wins
   the cascade; <html data-theme="light"> locks out Pico's dark mode.
   ============================================================================ */
:root,
:root:not([data-theme="dark"]),
[data-theme="light"] {
  --cream: #f6f1e7; --cream-deep: #efe7d6; --paper: #fffdf8;
  --ink: #1c2620; --ink-soft: #44524a; --line: #e3dccb;
  --green: #1f4d3a; --green-deep: #16382a; --green-bright: #2f7d5b;
  --amber: #e0a44a; --amber-deep: #c8862a; --terra: #c75c43;

  /* Pico -> Halla */
  --pico-background-color: #f6f1e7;
  --pico-color: #1c2620;
  --pico-h1-color: #1c2620; --pico-h2-color: #1c2620; --pico-h3-color: #1c2620;
  --pico-h4-color: #1c2620; --pico-h5-color: #1c2620; --pico-h6-color: #1c2620;
  --pico-muted-color: #44524a;
  --pico-muted-border-color: #e3dccb;
  --pico-primary: #1f4d3a;
  --pico-primary-background: #1f4d3a;
  --pico-primary-hover: #16382a;
  --pico-primary-hover-background: #16382a;
  --pico-primary-border: #1f4d3a;
  --pico-primary-inverse: #ffffff;
  --pico-primary-focus: rgba(47, 125, 91, .35);
  --pico-primary-underline: rgba(31, 77, 58, .5);
  --pico-secondary: #44524a;
  --pico-secondary-background: #44524a;
  --pico-secondary-hover: #34403a;
  --pico-secondary-inverse: #ffffff;
  --pico-card-background-color: #fffdf8;
  --pico-card-sectioning-background-color: #efe7d6;
  --pico-card-border-color: #e3dccb;
  --pico-form-element-background-color: #fffdf8;
  --pico-form-element-border-color: #e3dccb;
  --pico-form-element-active-border-color: #2f7d5b;
  --pico-form-element-focus-color: rgba(47, 125, 91, .35);
  --pico-table-border-color: #e3dccb;
  --pico-code-background-color: #efe7d6;
  --pico-border-radius: 10px;
  --pico-font-family-sans-serif: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Timetable */
  --booked-bg: #2f7d5b;
  --booked-fg: #ffffff;
  --free-hover: color-mix(in srgb, #2f7d5b 10%, transparent);
  --today-tint: color-mix(in srgb, #2f7d5b 8%, transparent);
}

body { background: var(--cream); color: var(--ink); }

h1, h2, h3, h4, h5, h6,
.site-header strong a {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  letter-spacing: -0.01em;
  font-weight: 600;
}

/* On-brand header bar */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header strong a { font-size: 1.2rem; color: var(--ink) !important; }

/* Day picker picks up green via --pico-primary, set explicitly too.
   (Room tab active styling lives in the binder-tab block above — do NOT set a
   green border-bottom-color here, it would un-fuse the active tab.) */
.room-tab.active { color: var(--green); }
.day-tab.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Buttons: rounded, brand green; primary CTA reads as a pill like marketing */
button, [type="submit"], [role="button"], a[role="button"] { border-radius: 10px; }

/* Booking-confirmed banner on brand */
.success-banner {
  background: color-mix(in srgb, var(--green-bright) 12%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--green-bright) 30%, transparent);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

/* Demo banner in the warm amber family rather than generic yellow */
.demo-banner { background: #fbe8cf; border-bottom-color: #f0d9a8; color: #7a5618; }
