/* ======== PRINTVIEW TWEAKS (pure CSS fallbacks) ======== */

/* 1) Esconde cualquier botón/enlace que dispare descarga de PDF */
a[href*="download_pdf"],
a[href*="download_multi_pdf"],
button[data-action="pdf"] {
  display: none !important;
}

/* También oculta separadores tipo '|' inmediatamente adyacentes */
a[href*="download_pdf"] + span,
a[href*="download_multi_pdf"] + span,
button[data-action="pdf"] + span {
  display: none !important;
}

/* 2) Agranda el primer botón de la barra si coincide con Print */
.print-actions .btn:first-child,
.page-actions .btn:first-child {
  /* si tu barra usa estas clases comunes, se aplica directo */
}

/* Clase que inyectaremos por JS (si logramos detectar el botón Print) */
.vabp-big-print {
  font-size: 18px !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  line-height: 1.2 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.vabp-big-print.btn-primary {
  letter-spacing: .2px;
}


/* Asegura el color amarillo para indicadores */
.indicator.yellow::before { background-color: #facc15 !important; } /* Tailwind amber-400 aprox */
.indicator.yellow { color: #92400e !important; } /* texto más legible sobre fondo claro */
