  /* Self-hosted webfonts (no third-party network requests). */
  @font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/cormorant-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/cormorant-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }

  :root {
    --bg: #f5f2ec;
    --bg-card: #ffffff;
    --ink: #1a1a1a;
    --ink-soft: #4a4a4a;
    --ink-muted: #8a8275;
    --line: #d9d2c4;
    --line-soft: #e8e3d8;
    --accent: #5a4a2e;
    --accent-soft: #8a7a5e;
    --highlight: #f0ebe0;
    --error: #a0392a;
    --success: #3a6a45;
  }

  * { box-sizing: border-box; }

  html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    min-height: 100vh;
    padding: 40px 20px 120px;
    background-image:
      radial-gradient(circle at 20% 10%, rgba(90, 74, 46, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 90%, rgba(90, 74, 46, 0.02) 0%, transparent 50%);
  }

  .shell {
    max-width: 920px;
    margin: 0 auto;
  }

  /* Top nav — back to catalog + privacy link */
  .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 0;
    font-size: 13px;
  }
  .top-nav a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s;
  }
  .top-nav a:hover { color: var(--ink); text-decoration: underline; }
  .top-nav-link { color: var(--ink-muted); }
  @media print { .top-nav { display: none !important; } }

  /* Header */
  header.masthead {
    text-align: center;
    padding: 20px 0 48px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 48px;
  }

  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .ornament::before,
  .ornament::after {
    content: '';
    height: 1px;
    width: 60px;
    background: var(--line);
  }

  h1.title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: var(--ink);
  }
  h1.title em {
    font-style: italic;
    color: var(--accent);
  }

  .tagline {
    font-size: 14px;
    color: var(--ink-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Progress + save state */
  .status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 2px;
    margin-bottom: 32px;
    font-size: 13px;
    position: sticky;
    top: 16px;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  }

  .progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }
  .progress-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-soft);
    white-space: nowrap;
  }
  .progress-track {
    flex: 1;
    height: 2px;
    background: var(--line-soft);
    position: relative;
    overflow: hidden;
    max-width: 400px;
  }
  .progress-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    background: var(--accent);
    transition: width 0.4s ease;
    width: 0%;
  }
  .save-state {
    font-size: 12px;
    color: var(--ink-muted);
    font-style: italic;
    white-space: nowrap;
  }
  .save-state.saved { color: var(--success); font-style: normal; }

  /* Section cards */
  section.card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.25s;
  }
  section.card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  }

  .card-head {
    padding: 22px 28px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
    transition: background 0.2s;
  }
  .card-head:hover { background: var(--highlight); }
  section.card.open .card-head { border-bottom-color: var(--line-soft); }

  /* Section numbers auto-generated from document order — add/reorder sections
     without having to renumber anything. */
  #epq-form { counter-reset: section-count; }
  section.card { counter-increment: section-count; }
  .card-number {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--accent-soft);
    min-width: 32px;
  }
  .card-number::before { content: counter(section-count, upper-roman) "."; }

  .card-title {
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.005em;
  }

  .card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--ink-muted);
  }

  .section-progress {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
  }
  .section-progress.complete { color: var(--success); }

  /* Section nav (left sidebar) */
  .side-nav {
    position: fixed;
    top: 28px;
    left: 24px;
    width: 232px;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(90, 74, 46, 0.04);
    font-size: 12px;
    color: var(--ink-soft);
    z-index: 20;
  }
  .side-nav h3 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .side-nav ol {
    list-style: none;
    counter-reset: nav;
    padding: 0;
    margin: 0;
  }
  .side-nav li { counter-increment: nav; margin: 0; }
  .side-nav a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 8px 6px 28px;
    position: relative;
    text-decoration: none;
    color: var(--ink-soft);
    border-left: 2px solid transparent;
    line-height: 1.35;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
  }
  .side-nav a::before {
    content: counter(nav);
    position: absolute;
    left: 6px;
    top: 6px;
    width: 18px;
    text-align: right;
    font-size: 10px;
    color: var(--ink-muted);
    font-variant-numeric: tabular-nums;
  }
  .side-nav a:hover {
    background: var(--highlight);
    color: var(--ink);
  }
  .side-nav a.current {
    background: var(--highlight);
    color: var(--ink);
    border-left-color: var(--accent);
  }
  .side-nav a.complete .nav-title {
    color: var(--success);
  }
  .side-nav .nav-title {
    flex: 1 1 auto;
    min-width: 0;
  }
  .side-nav .nav-count {
    flex: 0 0 auto;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
  }
  .side-nav a.complete .nav-count { color: var(--success); }
  .side-nav li.hidden { display: none; }
  .side-nav-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
    font-size: 11px;
    color: var(--ink-muted);
    text-align: center;
  }
  /* Push the main shell right when the sidebar is visible so they don't collide. */
  @media (min-width: 1180px) {
    .shell { margin-left: max(288px, calc((100vw - 920px) / 2)); margin-right: 24px; }
  }
  @media (max-width: 1179px) {
    .side-nav { display: none; }
  }
  /* Hide sidebar when printing */
  @media print {
    .side-nav { display: none !important; }
  }

  .chevron {
    transition: transform 0.3s;
    color: var(--ink-muted);
  }
  section.card.open .chevron { transform: rotate(180deg); }

  .card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  section.card.open .card-body {
    max-height: 10000px;
  }
  .card-inner {
    padding: 8px 28px 28px;
  }

  /* Field grid */
  .grid {
    display: grid;
    gap: 18px 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.single { grid-template-columns: 1fr; }
  .grid.thirds { grid-template-columns: repeat(3, 1fr); }
  .full { grid-column: 1 / -1; }

  @media (max-width: 640px) {
    .grid, .grid.thirds { grid-template-columns: 1fr; }
  }

  .field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: 6px;
  }
  .field .hint {
    font-size: 12px;
    color: var(--ink-muted);
    font-style: italic;
    margin-top: 4px;
  }

  input[type="text"],
  input[type="date"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    background: #fdfcf9;
    border: 1px solid var(--line);
    border-radius: 2px;
    transition: border 0.15s, background 0.15s, box-shadow 0.15s;
  }
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(90,74,46,0.08);
  }

  textarea { resize: vertical; min-height: 80px; font-family: inherit; }

  /* Radio / checkbox groups */
  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fdfcf9;
    border: 1px solid var(--line);
    border-radius: 2px;
    cursor: pointer;
    font-size: 13px;
    color: var(--ink-soft);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 0;
    transition: all 0.15s;
  }
  .radio-group label:hover { border-color: var(--accent-soft); }
  .radio-group input[type="radio"],
  .radio-group input[type="checkbox"] {
    accent-color: var(--accent);
    margin: 0;
  }
  .radio-group label.active {
    background: var(--highlight);
    border-color: var(--accent);
    color: var(--ink);
  }

  /* Repeating rows */
  .repeater {
    border: 1px dashed var(--line);
    padding: 18px;
    border-radius: 2px;
    background: #fbfaf5;
  }
  .repeater-row {
    display: grid;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
  }
  .repeater-row:last-of-type { border-bottom: none; padding-bottom: 4px; }
  .repeater-row:first-of-type { padding-top: 4px; }
  .repeater-row label { font-size: 11px; }

  .row-delete {
    position: absolute;
    top: 14px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--ink-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 2px;
    transition: color 0.15s, background 0.15s;
  }
  .row-delete:hover { color: var(--error); background: rgba(160, 57, 42, 0.08); }

  .repeater-row.has-delete { padding-right: 32px; }

  .btn-add {
    margin-top: 12px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--accent);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    border-radius: 2px;
    font-family: inherit;
    transition: all 0.15s;
  }
  .btn-add:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }

  /* Subheadings within sections */
  .subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin: 28px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line-soft);
    letter-spacing: 0.01em;
  }
  .subheading:first-child { margin-top: 8px; }

  .instruction {
    font-size: 13px;
    color: var(--ink-muted);
    font-style: italic;
    margin: -6px 0 14px;
    line-height: 1.5;
  }
  .subsection {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
  }
  .subsection .instruction {
    margin-top: 0;
    color: var(--ink-soft);
    font-style: normal;
  }

  /* Required-field marker */
  .req {
    color: var(--error);
    font-weight: 400;
    margin-left: 2px;
  }

  /* Triage card — visually distinct "getting started" screen */
  section.card.triage {
    background: linear-gradient(180deg, var(--highlight) 0%, var(--bg-card) 100%);
    border-color: var(--accent-soft);
  }
  section.card.triage .card-title { color: var(--accent); }

  /* Major subheading inside a card (acts like a soft section break) */
  .subheading-major {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin: 28px 0 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .subheading-major:first-child { margin-top: 0; }
  .subheading-major + .instruction { margin-top: 8px; }

  /* Deep-dive <details> element (optional, collapsible sub-section) */
  details.deep-dive {
    margin: 14px 0;
    border: 1px solid var(--line-soft);
    border-radius: 2px;
    background: #fbfaf6;
    transition: background 0.15s;
  }
  details.deep-dive[open] {
    background: var(--bg-card);
    border-color: var(--line);
  }
  details.deep-dive > summary {
    cursor: pointer;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    list-style: none;
    display: flex;
    align-items: baseline;
    gap: 10px;
    user-select: none;
  }
  details.deep-dive > summary::marker,
  details.deep-dive > summary::-webkit-details-marker { display: none; }
  details.deep-dive > summary::before {
    content: '+';
    font-size: 18px;
    line-height: 1;
    color: var(--accent-soft);
    width: 12px;
    text-align: center;
    display: inline-block;
    transition: transform 0.2s;
    font-weight: 400;
  }
  details.deep-dive[open] > summary::before { content: '−'; }
  details.deep-dive > summary:hover { background: var(--highlight); }
  details.deep-dive > summary .dd-hint {
    font-size: 12px;
    color: var(--ink-muted);
    font-style: italic;
    font-weight: 400;
  }
  details.deep-dive > .dd-body {
    padding: 4px 18px 20px;
    border-top: 1px dashed var(--line-soft);
  }

  /* "Use the same person for all roles" shortcut */
  .same-person-btn {
    background: var(--bg-card);
    border: 1px solid var(--accent-soft);
    color: var(--accent);
    padding: 10px 18px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    margin: 0 0 22px;
    border-radius: 2px;
    transition: background 0.15s, color 0.15s;
  }
  .same-person-btn:hover {
    background: var(--accent);
    color: #fff;
  }
  .same-person-btn.applied {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
  }
  .same-person-hint {
    font-size: 12px;
    color: var(--ink-muted);
    font-style: italic;
    margin: -14px 0 22px;
  }

  /* Summary totals */
  .summary-box {
    background: var(--highlight);
    border: 1px solid var(--line);
    padding: 16px 20px;
    border-radius: 2px;
    margin-top: 20px;
  }
  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    font-size: 14px;
  }
  .summary-row.divider { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 8px; }
  .summary-row.total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
  }
  .summary-value {
    font-variant-numeric: tabular-nums;
    font-weight: 500;
  }

  /* Actions */
  .action-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 2px;
    text-align: center;
  }
  .action-bar .btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .action-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin: 0 0 6px;
    color: var(--ink);
    font-style: italic;
  }
  .action-sub {
    font-size: 13px;
    color: var(--ink-muted);
    margin: 0 0 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    font-family: inherit;
    transition: all 0.2s;
    border: 1px solid transparent;
  }
  .btn-primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .btn-primary:hover { background: var(--accent); border-color: var(--accent); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn-secondary:hover { background: var(--ink); color: #fff; }
  .btn-ghost {
    background: transparent;
    color: var(--error);
    border-color: transparent;
  }
  .btn-ghost:hover { text-decoration: underline; }

  /* Footer */
  .foot-note {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: var(--ink-muted);
    font-style: italic;
  }

  .privacy-notice {
    margin: 32px auto 0;
    max-width: 780px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-left: 3px solid var(--accent-soft);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .privacy-notice h4 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
  }
  .privacy-notice ul { margin: 0; padding-left: 20px; }
  .privacy-notice li { margin-bottom: 6px; }
  .privacy-notice li:last-child { margin-bottom: 0; }
  .privacy-proof {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
  }
  .privacy-proof summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--accent);
    list-style: none;
    padding: 2px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .privacy-proof summary::marker,
  .privacy-proof summary::-webkit-details-marker { display: none; }
  .privacy-proof summary::before {
    content: '▸';
    display: inline-block;
    transition: transform 0.2s;
    font-size: 11px;
    color: var(--accent-soft);
  }
  .privacy-proof[open] summary::before { transform: rotate(90deg); }
  .privacy-proof ol { margin: 10px 0 0; padding-left: 22px; }
  .privacy-proof li { margin-bottom: 8px; line-height: 1.5; }
  .privacy-proof code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    background: var(--highlight);
    padding: 1px 5px;
    border-radius: 2px;
    font-size: 12px;
  }
  .privacy-proof kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    background: #fff;
    border: 1px solid var(--line);
    border-bottom-width: 2px;
    padding: 0 5px;
    border-radius: 3px;
    font-size: 11px;
    color: var(--ink);
  }

  /* Print styles */
  @media print {
    body { background: #fff; padding: 0; }
    .privacy-notice { display: none !important; }
    .status-bar, .action-bar, .btn-add, .row-delete, .chevron, .foot-note { display: none !important; }
    .same-person-btn, .same-person-hint { display: none !important; }
    section.card.triage { display: none !important; }
    /* Expand all deep-dive details in print so every filled field is visible */
    details.deep-dive { background: #fff !important; border-color: #ddd !important; break-inside: avoid; }
    details.deep-dive > summary { list-style: none; padding: 6px 0; font-weight: 600; }
    details.deep-dive > summary::before { content: '' !important; }
    details.deep-dive > .dd-body { padding: 0; border-top: none; display: block !important; }
    details { page-break-inside: avoid; }
    section.card { border: 1px solid #999; break-inside: avoid; page-break-inside: avoid; margin-bottom: 16px; box-shadow: none; }
    section.card .card-body { max-height: none !important; overflow: visible !important; }
    .card-head { cursor: default; background: #f0f0f0; }
    input, select, textarea { border: 1px solid #bbb !important; background: #fff !important; box-shadow: none !important; }
    h1.title { font-size: 32px; }
  }

  /* Tiny UX touches */
  ::placeholder { color: #b8b0a0; font-style: italic; }
  .field input:not(:placeholder-shown):not([type="radio"]):not([type="checkbox"]),
  .field textarea:not(:placeholder-shown),
  .field select:valid:not([value=""]) {
    background: #fff;
  }

  /* Toast */
  .toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--ink);
    color: #fff;
    padding: 14px 24px;
    border-radius: 2px;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 100;
    max-width: 90%;
    text-align: center;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
