/*
 * Shared mock banner for ITKdev Research prototypes.
 *
 * Loaded standalone — not part of .ds — so any prototype can use it,
 * including those that opt out of the design system. Uses :where()
 * for low specificity so prototypes can override locally if needed.
 *
 * Pair with mock-banner.js, which auto-injects the markup and adds
 * the matching body padding-top.
 */

:where(.mock-banner) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #fef9e7;
  color: #666;
  text-align: center;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #f0e6c0;
  z-index: 1000;
  pointer-events: none;
}

:where(.mock-banner strong) {
  font-weight: 600;
  margin-right: 4px;
}
