/* ──────────────────────────────
   Botones de descarga PDF
   ────────────────────────────── */

.pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  background-color: #d32f2f; /* rojo */
  color: white !important;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pdf-button:hover {
  background-color: #b71c1c;
  transform: translateY(-1px);
}

.pdf-button svg,
.pdf-button .twemoji {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
}

/* ──────────────────────────────
   Modo oscuro
   ────────────────────────────── */
[data-md-color-scheme="slate"] .pdf-button {
  background-color: #ef5350;
  color: white !important;
}

[data-md-color-scheme="slate"] .pdf-button:hover {
  background-color: #e53935;
}

