/* forge.isonai.com docs — warm editorial theme, single copper accent. */

:root {
  --bg:              #f4f0e8;
  --bg-soft:         #eae4d6;
  --bg-deep:         #dfd7c6;
  --fg:              #2a2620;
  --fg-soft:         #4a4338;
  --muted:           #6e6557;
  --muted-soft:      #98907f;
  --accent:          #b95a3f;
  --accent-hover:    #99452f;
  --accent-soft:     #d97757;
  --accent-tint:     rgba(185,90,63,0.08);
  --hairline:        #e0dad0;
  --hairline-strong: #c9c0b0;
  --code-bg:         #eae4d6;
  --danger:          #6e2418;
  --danger-tint:     rgba(110,36,24,0.08);
  --success:         #4a7a3e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
html, body { background: var(--bg); color: var(--fg); }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  min-height: 100vh;
}

::selection { background: var(--accent-tint); color: var(--fg); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 2px; }

code, pre {
  font-family: 'JetBrains Mono', ui-monospace, 'Cascadia Mono', 'Source Code Pro', monospace;
  font-size: 14px;
}
code {
  background: var(--code-bg);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--fg);
  font-size: 13.5px;
}
pre {
  background: var(--code-bg);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 16px 20px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0;
}
pre code { background: transparent; padding: 0; font-size: inherit; }

/* ──────────────── Sidebar ──────────────── */
aside {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--hairline);
  padding: 36px 28px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: var(--bg);
}
aside .brand-mono {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 600;
}
aside h3 {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}
aside ul { list-style: none; }
aside ul li a {
  display: block;
  padding: 6px 10px;
  margin-left: -10px;
  color: var(--fg-soft);
  font-size: 14px;
  border-radius: 4px;
  transition: background 120ms ease, color 120ms ease;
}
aside ul li a:hover { color: var(--fg); background: var(--bg-soft); text-decoration: none; }
aside ul li a.active { color: var(--accent); background: var(--accent-tint); font-weight: 500; }

/* ──────────────── Main content ──────────────── */
main {
  flex: 1;
  padding: 56px 64px;
  max-width: 940px;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--fg);
}
h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-top: 52px;
  margin-bottom: 14px;
  scroll-margin-top: 24px;
  color: var(--fg);
}
h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 10px;
  scroll-margin-top: 24px;
  color: var(--fg);
}
h4 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--fg);
}
p { margin-bottom: 14px; }
ul, ol { padding-left: 26px; margin-bottom: 14px; }
ul li, ol li { margin-bottom: 5px; }

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 720px;
}

/* ──────────────── Hero ──────────────── */
.hero {
  margin-bottom: 64px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hairline);
}
.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero .lede {
  font-size: 19px;
  margin-bottom: 28px;
  max-width: 680px;
  color: var(--fg-soft);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.hero-stat .num {
  display: block;
  font-size: 26px;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero-stat .lbl {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ──────────────── Sections ──────────────── */
.section {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.section:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.section-kicker {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.tag-new {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 2px 8px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--accent-tint);
}

/* ──────────────── Endpoint blocks ──────────────── */
.endpoint {
  margin-top: 48px;
  padding: 28px 0 0;
  border-top: 1px solid var(--hairline);
}
.endpoint:first-of-type { border-top: none; padding-top: 0; }
.endpoint-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.endpoint h2 {
  margin: 0;
  font-size: 26px;
}
.endpoint-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 5px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
}

/* ──────────────── Use-case grid ──────────────── */
.usecase-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin: 18px 0 28px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg);
}
.usecase {
  padding: 18px 22px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.usecase:last-child { border-right: none; }
.usecase h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.usecase p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ──────────────── Tables ──────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
table th, table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hairline);
}
table th {
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--hairline-strong);
}
table td { color: var(--fg); }
table tbody tr:last-child td { border-bottom: none; }

/* ──────────────── Language tabs ──────────────── */
.lang-tabs {
  display: flex;
  gap: 0;
  margin-top: 14px;
  border-bottom: 1px solid var(--hairline);
}
.lang-tabs button {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 10px 18px;
  font-size: 13.5px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.lang-tabs button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.lang-tabs button:hover { color: var(--fg); }
.lang-panel { display: none; margin-top: -1px; }
.lang-panel.active { display: block; }
.lang-panel pre { border-top-left-radius: 0; border-top-right-radius: 0; }

/* ──────────────── HTTP method badge ──────────────── */
.method {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-right: 8px;
}
.method.post { background: var(--accent-tint); color: var(--accent); }
.method.get { background: rgba(74,122,62,0.1); color: var(--success); }
.method.delete { background: var(--danger-tint); color: var(--danger); }
.method.patch { background: var(--accent-tint); color: var(--accent); }

.endpoint-path {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

/* ──────────────── Footer ──────────────── */
footer {
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--muted);
}

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

/* ──────────────── Responsive ──────────────── */
@media (max-width: 900px) {
  body { flex-direction: column; }
  aside {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 20px 24px;
  }
  main { padding: 32px 24px; max-width: none; }
  .hero h1 { font-size: 32px; }
  .hero .lede { font-size: 16px; }
}

/* ──────────────── Pygments syntax highlighting (batik-tuned) ──────────────── */
.hl {
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  margin: 14px 0;
  overflow-x: auto;
}
.hl pre {
  background: transparent;
  border: none;
  margin: 0;
  padding: 16px 20px;
}
.hl .c, .hl .c1, .hl .cm { color: var(--muted); font-style: italic; }       /* Comment */
.hl .k, .hl .kn, .hl .kd, .hl .kr { color: var(--accent); font-weight: 600; } /* Keyword */
.hl .s, .hl .s1, .hl .s2, .hl .sb, .hl .se, .hl .sd { color: var(--success); } /* String */
.hl .n  { color: var(--fg); }                                                /* Name */
.hl .nb { color: #6E2418; }                                                  /* Builtin */
.hl .nf { color: #5E3A1F; font-weight: 600; }                                /* Function name */
.hl .nc { color: #5E3A1F; font-weight: 600; }                                /* Class name */
.hl .nd { color: var(--accent); }                                            /* Decorator */
.hl .o, .hl .ow { color: var(--fg-soft); font-weight: 600; }                 /* Operator */
.hl .p  { color: var(--fg-soft); }                                           /* Punctuation */
.hl .mi, .hl .mf, .hl .mh, .hl .mo { color: #7B4422; }                       /* Number */
.hl .nt { color: var(--accent); font-weight: 600; }                          /* HTML/XML tag */
.hl .na { color: var(--success); }                                           /* Attribute */
.hl .nv { color: var(--fg); }                                                /* Variable */
.hl .err { color: var(--danger); background: var(--danger-tint); }
.hl .gh { color: var(--accent); font-weight: 600; }                          /* Generic Heading */
.hl .gd { color: var(--danger); }                                            /* Generic Deleted */
.hl .gi { color: var(--success); }                                           /* Generic Inserted */
.hl .gu { color: var(--accent); font-weight: 600; }
.hl .gs { font-weight: 600; }

/* Inline code in markdown body */
:not(pre) > code {
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
}

/* Heading anchors from TOC extension */
h1 a.toclink, h2 a.toclink, h3 a.toclink, h4 a.toclink {
  color: inherit;
  text-decoration: none;
}
h2:hover a.toclink::before, h3:hover a.toclink::before {
  content: "# ";
  color: var(--accent-soft);
}

/* Blockquote */
blockquote {
  border: none;
  background: none;
  padding: 0;
  margin: 14px 0 14px 20px;
  color: var(--fg-soft);
  font-style: italic;
}
blockquote p { margin: 0 0 8px; }
blockquote p:last-child { margin-bottom: 0; }

/* Stronger emphasis */
strong { font-weight: 600; color: var(--fg); }

/* ──────────────── Sidebar v2 (collapsible, icons, in-page TOC) ──────────────── */
aside {
  font-size: 14px;
}
aside .brand-mono {
  display: block;
  text-decoration: none;
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: color 120ms ease;
}
aside .brand-mono:hover {
  color: var(--accent-hover);
  text-decoration: none;
}
aside .brand-mono .brand-sub,
footer .brand-sub {
  color: var(--muted);
  font-weight: 400;
  margin-left: 2px;
}
footer .sep { color: var(--muted-soft); padding: 0 4px; }
.sidebar-foot a.muted { color: var(--muted-soft); }

/* Search trigger button */
.search-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 22px;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 120ms ease, color 120ms ease, background 120ms ease;
}
.search-trigger:hover {
  border-color: var(--accent);
  color: var(--fg);
}
.search-trigger .ic-search {
  flex-shrink: 0;
  color: var(--muted-soft);
}
.search-trigger:hover .ic-search { color: var(--accent); }
.search-trigger span { flex: 1; text-align: left; }
.search-trigger kbd {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--hairline-strong);
  border-radius: 3px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-soft);
}

/* Collapsible groups */
.nav-group {
  margin-bottom: 6px;
  border-bottom: 1px solid transparent;
}
.nav-group > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  user-select: none;
  border-radius: 4px;
  transition: color 120ms ease, background 120ms ease;
}
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary:hover {
  color: var(--fg-soft);
  background: var(--bg-soft);
}
.nav-group > summary .ic-group {
  color: var(--accent-soft);
  flex-shrink: 0;
  transition: color 120ms ease;
}
.nav-group > summary:hover .ic-group { color: var(--accent); }
.nav-group > summary .grp-label {
  flex: 1;
}
.nav-group > summary .chevron {
  color: var(--muted-soft);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-group[open] > summary .chevron {
  transform: rotate(180deg);
}
.nav-group[open] > summary .ic-group {
  color: var(--accent);
}

/* Nav links inside group */
.nav-group ul {
  list-style: none;
  padding: 4px 0 8px;
  margin: 0;
  border-left: 1px solid var(--hairline);
  margin-left: 11px;     /* aligns with icon */
}
.nav-group ul li {
  margin: 0;
  padding: 0;
}
.nav-group ul li a {
  display: block;
  padding: 4px 12px;
  margin-left: -1px;     /* overlap left border */
  border-left: 1px solid transparent;
  color: var(--fg-soft);
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease, padding-left 200ms ease;
}
.nav-group ul li a:hover {
  color: var(--fg);
  background: var(--bg-soft);
  border-left-color: var(--accent-soft);
  text-decoration: none;
}
.nav-group ul li a.active {
  color: var(--accent);
  font-weight: 500;
  border-left-color: var(--accent);
  background: var(--accent-tint);
}

/* In-page TOC nested under active link */
.page-toc {
  padding: 4px 0 6px 14px;
  margin-top: 2px;
  border-left: 1px solid var(--hairline);
  margin-left: 4px;
}
.page-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-toc-item {
  margin: 0;
}
.page-toc-item.lvl3 a { padding-left: 22px; font-size: 12.5px; }
.page-toc-item a {
  display: block;
  padding: 2px 10px;
  margin-left: -1px;
  border-left: 1px solid transparent;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  line-height: 1.4;
  transition: color 120ms ease, border-color 120ms ease;
}
.page-toc-item a:hover {
  color: var(--fg-soft);
  text-decoration: none;
}
.page-toc-item a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 500;
}

/* Sidebar footer */
.sidebar-foot {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  padding: 3px 2px;
  transition: color 120ms ease;
}
.sidebar-foot a:hover {
  color: var(--accent);
  text-decoration: none;
}
.sidebar-foot a svg { opacity: 0.6; }

/* ──────────────── Search modal (Cmd+K overlay) ──────────────── */
body.search-open { overflow: hidden; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}
.search-overlay[hidden] { display: none; }
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,0.35);
  backdrop-filter: blur(3px);
  animation: fadeIn 180ms ease;
}
.search-modal {
  position: relative;
  width: min(640px, 92vw);
  max-height: 70vh;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(26,24,20,0.2), 0 4px 12px rgba(26,24,20,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideDown 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--hairline);
}
.search-input-wrap svg { color: var(--muted); flex-shrink: 0; }
.search-input-wrap input {
  flex: 1;
  border: none;
  background: none;
  font-size: 16px;
  color: var(--fg);
  outline: none;
  padding: 0;
  font-family: inherit;
}
.search-input-wrap input::placeholder { color: var(--muted-soft); }
.search-input-wrap input:focus { box-shadow: none; }
.search-input-wrap kbd {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid var(--hairline-strong);
  border-radius: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--muted);
  background: var(--bg-soft);
}

.search-results {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
.search-empty {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.search-result {
  display: block;
  padding: 10px 18px;
  border-left: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 100ms ease, border-color 100ms ease;
}
.search-result:hover, .search-result.selected {
  background: var(--accent-tint);
  border-left-color: var(--accent);
  text-decoration: none;
}
.search-result-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 2px;
}
.search-result-meta {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.search-result-excerpt {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.45;
}
.search-result mark {
  background: var(--accent-soft);
  color: var(--fg);
  padding: 0 1px;
  border-radius: 2px;
}

.search-foot {
  display: flex;
  gap: 18px;
  padding: 10px 18px;
  border-top: 1px solid var(--hairline);
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg-soft);
}
.search-foot kbd {
  display: inline-block;
  padding: 1px 5px;
  margin: 0 3px;
  border: 1px solid var(--hairline-strong);
  border-radius: 3px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  background: var(--bg);
  color: var(--fg-soft);
}

/* ──────────────── Status indicators ──────────────── */
#status-live {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--bg);
  margin: 18px 0 28px;
  overflow: hidden;
}
.status-row {
  display: grid;
  grid-template-columns: 12px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14.5px;
}
.status-row:last-child { border-bottom: none; }
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.pending { background: var(--muted-soft); animation: pulse 1.2s ease-in-out infinite; }
.status-dot.ok      { background: var(--success); box-shadow: 0 0 0 3px rgba(74,122,62,0.12); }
.status-dot.warn    { background: #c79a64; box-shadow: 0 0 0 3px rgba(199,154,100,0.12); }
.status-dot.err     { background: var(--danger); box-shadow: 0 0 0 3px rgba(110,36,24,0.12); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.status-name { color: var(--fg); font-weight: 500; }
.status-text { font-size: 13px; }
.status-text.ok   { color: var(--success); }
.status-text.warn { color: #8a6c44; }
.status-text.err  { color: var(--danger); }
.status-text.muted, .status-row .muted { color: var(--muted); }
.status-lat {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
}

/* Footer dot separator */
footer .dot { color: var(--muted-soft); padding: 0 4px; }

/* Brand wordmark accent dot */
.brand-mono .b-dot,
h1 .b-dot,
footer .b-dot { color: #2C4A6F; }

/* Mobile sidebar adjustments */
@media (max-width: 900px) {
  aside { padding: 16px 20px; }
  .search-modal { width: 96vw; max-height: 80vh; }
}
