/* =========================
   Base typography (compact)
   ========================= */
body {
  font-size: 14px;
  /* default ~16px → mais denso */
  line-height: 1.4;
}

/* Parágrafos e listas */
p,
li {
  font-size: 14px;
}

/* Headings levemente menores/compactos */
h1 {
  font-size: 1.9rem;
  margin-top: 1.2rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 1.1rem;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1rem;
}

h4 {
  font-size: 1.1rem;
}

/* Espaçamento geral mais contido */
.section {
  margin-bottom: 1.25rem;
}

/* Container um pouco mais estreito (melhor leitura) */
.container-fluid {
  max-width: 1100px;
}

/* =========================
   Code blocks & inline code
   ========================= */
pre,
code {
  font-size: 13px;
}

pre {
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  overflow-x: auto;
}

/* Inline code */
code {
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

/* =========================
   Tables (crítico no seu caso)
   ========================= */
.table {
  font-size: 13px;
  margin-bottom: 1rem;
}

.table th,
.table td {
  padding: 0.35rem 0.5rem;
  /* default é mais espaçado */
  vertical-align: middle;
}

.table thead th {
  font-weight: 600;
}

/* Evita tabelas gigantes quebrarem layout */
.table-responsive {
  overflow-x: auto;
}

/* =========================
   Figures / images
   ========================= */
.figure {
  margin: 1rem 0;
}

.figure img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Toc (sidebar direita)
   ========================= */
#toc {
  font-size: 13px;
  line-height: 1.3;
}

#toc .nav-link {
  padding: 0.2rem 0.4rem;
}

/* =========================
   Navbar (topo)
   ========================= */
.navbar {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.navbar-brand {
  font-size: 1rem;
}

/* =========================
   Badges / pills / labels
   ========================= */
.badge {
  font-size: 0.75rem;
}

/* =========================
   Improve readability for long docs
   ========================= */
.content {
  max-width: 900px;
  /* opcional: limita largura do texto */
}

/* =========================
   Optional: tighter spacing in lists
   ========================= */
ul,
ol {
  margin-bottom: 0.8rem;
}
