/*
 * TEST instance visual marker — gitignored, loaded only by the test worktree's
 * index.html (which is on the promote denylist). NEVER promoted to prod.
 * A fixed red "TEST ENVIRONMENT" bar across the very top of every page.
 * pointer-events:none so it never blocks the UI underneath.
 */
body::before {
  content: "\26A0  TEST ENVIRONMENT  \26A0";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  z-index: 2147483647;
  text-align: center;
  background: #dc2626;            /* red-600 */
  color: #ffffff;
  font: 800 20px/34px system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.25em;
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
