/**
 * Nombre: debug-panel.style.css
 * Ruta: agroregistro/includes/modules/debug-panel/debug-panel.style.css
 * Ruta completa: /wp-content/plugins/agroregistro/includes/modules/debug-panel/debug-panel.style.css
 *
 * Descripción:
 *  - Estilos del panel de diagnóstico inferior (modo debug global).
 */

#ar-debug-panel.ar-debug-panel{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:999999;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border-radius:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  border: 1px solid rgba(44,74,156,.22);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}

#ar-debug-panel .ar-debug-panel__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

#ar-debug-panel .ar-debug-panel__title{
  font-size:13px;
  color:#0f172a;
}

#ar-debug-panel .ar-debug-panel__actions{
  display:flex;
  gap:8px;
}

#ar-debug-panel .ar-debug-btn{
  appearance:none;
  border: 1px solid rgba(44,74,156,.25);
  background: rgba(44,74,156,.08);
  color:#2C4A9C;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
}

#ar-debug-panel .ar-debug-btn--close{
  border-color: rgba(239,68,68,.25);
  background: rgba(239,68,68,.08);
  color:#b91c1c;
}

#ar-debug-panel .ar-debug-panel__body{
  margin:0;
  padding:12px;
  max-height:38vh;
  overflow:auto;
  font-size:12px;
  color:#111827;
  white-space:pre-wrap;
}
