/* =====================================================================
   CodeIgniter Jobs — Furo visual polish
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Fira+Code:wght@400;500&display=swap');

:root {
  --font-stack--monospace: 'JetBrains Mono', 'Fira Code', ui-monospace,
    SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
  --ci-radius: 10px;
}

/* ---- Code blocks: rounded "card" with soft border + shadow ---------- */
.highlight {
  border-radius: var(--ci-radius);
  border: 1px solid var(--color-background-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.highlight pre {
  border-radius: var(--ci-radius);
  font-family: var(--font-stack--monospace);
  font-size: 0.86rem;
  line-height: 1.55;
  padding: 0.9rem 1.05rem;
}

/* Inline code: subtle chip */
code.literal,
p code,
li code,
td code {
  font-family: var(--font-stack--monospace);
  border-radius: 5px;
  padding: 0.12em 0.38em;
  font-size: 0.85em;
}

/* Copy button: nudge inside the rounded corner */
.highlight button.copybtn {
  border-radius: 6px;
  top: 0.55rem;
  right: 0.55rem;
}

/* ---- Tables: polished, zebra rows, branded header ------------------- */
table.docutils {
  border-radius: var(--ci-radius);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: 1px solid var(--color-background-border);
}

table.docutils thead th {
  background: var(--color-background-secondary);
  border-bottom: 2px solid var(--color-brand-primary);
  font-weight: 600;
  text-align: left;
}

table.docutils td,
table.docutils th {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--color-background-border);
  vertical-align: top;
}

table.docutils tbody tr:nth-child(even) {
  background: var(--color-background-secondary);
}

table.docutils tbody tr:last-child td {
  border-bottom: none;
}

/* ---- Headings: more presence + a branded h2 underline --------------- */
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--color-background-border);
}

/* ---- Blockquotes (authored as "> **Note:** / **Warning:**") --------- */
blockquote {
  border-left: 4px solid var(--color-brand-primary);
  background: var(--color-background-secondary);
  border-radius: 0 8px 8px 0;
  padding: 0.6rem 1rem;
  margin-left: 0;
}

/* ---- Readable long-form content ------------------------------------- */
article {
  line-height: 1.65;
}
