/* OCRA font (local .ttf at site root) */
@font-face {
  font-family: "OCRA";
  src: url("/OCRA.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* fast paint; swap when ready */
}

/* Optional: set a sensible global fallback stack */
:root {
  --sn-mono: "OCRA", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* If you want OCRA everywhere by default: */
html, body {
  font-family: var(--sn-mono);
}


/* Procedura logo (bottom-right) */
.logo-box {
  position: fixed;
  bottom: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  z-index: 15000;
  pointer-events: none;
}
.logo-box svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

