/**
 * ADA Compliance Plugin — public widget base styles.
 * The bulk of widget styling is injected at runtime by widget.js to remain
 * conflict-safe inside Impreza / WPBakery. This file provides a safe fallback
 * so the launcher is never invisible if inline injection is blocked by a CSP.
 * Author: Bitghost.com
 */
#adacp-root { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
#adacp-root .adacp-launcher {
  position: fixed;
  z-index: 2147483000;
  background: #000;
  color: #fff;
  border: 3px solid #fff;
}
#adacp-root .adacp-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(0, 0, 0, .45);
}
#adacp-root .adacp-modal {
  position: fixed;
  z-index: 2147483001;
  background: #000;
  color: #fff;
  border: 22px solid #fff; /* Bitghost signature 22px border */
  max-width: 92vw;
  max-height: 80vh;
  overflow: auto;
}
#adacp-guide { pointer-events: none; }
@media print { #adacp-root { display: none !important; } }
