/* Minimal trusted-HUD chrome. External file, not an inline <style> block,
   because the HUD's CSP is default-src 'self' with no style-src
   allowance for 'unsafe-inline' — see infra/lib/platform-stack.ts. */

html, body {
  margin: 0;
  height: 100%;
  font-family: system-ui, sans-serif;
  background: #0b0f14;
  color: #e6e8eb;
}

header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: #12181f;
  border-bottom: 1px solid #232b34;
}

header .brand {
  font-weight: 600;
}

#hud-status {
  color: #9aa7b0;
  font-size: 0.9rem;
}

main {
  height: calc(100% - 3rem);
}

#poc-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
