/* --- COLOR DE FUENTE MÁS OSCURO --- */
:root {
  --bs-body-color: #1a1a1a;
}

body {
  color: #1a1a1a;
}

/* --- TAMAÑO DE FUENTE +1pt (base 16px -> 17px) --- */
html {
  font-size: 17px;
}

/* --- ESTILOS DE LEYENDAS DE FIGURAS Y TABLAS --- */
figcaption,
.figure-caption,
caption {
  color: #000000 !important;
  font-weight: normal;
  font-family: Arial, sans-serif !important;
  line-height: 1.3 !important;
}

/* "Figura X:" en negrita dentro de la leyenda */
.figure-caption .caption-number,
figcaption .caption-number,
.quarto-float-fig .quarto-float-caption .caption-number {
  font-weight: bold !important;
}

/* Leyendas de tablas - mismo formato que las de figuras */
.quarto-float-tbl .quarto-float-caption,
table caption,
.tbl-cap {
  text-align: left !important;
  color: #000000 !important;
  font-weight: normal;
  font-family: Arial, sans-serif !important;
  line-height: 1.3 !important;
}

/* "Tabla X:" en negrita dentro de la leyenda */
.quarto-float-tbl .quarto-float-caption .caption-number,
table caption .caption-number,
.tbl-cap .caption-number {
  font-weight: bold !important;
}

/* --- ESTILOS DE LA TABLA DE CONTENIDO (TOC DERECHO) --- */
#TOC {
  background-color: #223764;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Título del TOC */
#TOC>ul::before,
#TOC h2 {
  color: #FAC718 !important;
  font-weight: bold;
}

/* Enlaces del TOC */
#TOC ul li a {
  color: #ffffff !important;
  transition: color 0.2s ease;
}

#TOC ul li a:hover,
#TOC ul li a.active {
  color: #FAC718 !important;
  text-decoration: none;
}

/* --- LÍNEAS DIVISORIAS DE CABECERAS GLOBALES --- */
h1, .title, h2 {
  border-bottom: 1px solid #ecf0f1;
  padding-bottom: 8px;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

h3, h4, h5, h6 {
  border-bottom: none !important;
}
