/*
 * ============================================================================
 * cns-debug-active.css
 * ============================================================================
 *
 * Beschreibung: CSS-Styling für cns_debug.
 * Version: V.1.0.0.20260520
 * Autor: ChatGPT Assistant für WDSB / SaarlandToday
 * Datum: 2026-05-20 09:10
 *
 * ============================================================================
 */

/**
 * @file
 * Badge „DEBUG ACTIVE“ oben (nur body.cns-debug-global-active).
 */

body.cns-debug-global-active::before {
  content: "DEBUG ACTIVE";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483600;
  padding: 3px 14px 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: #c4002a;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
