:root {
  --bg: transparent;
  --text: #ffffff;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}
#root {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#frame {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  padding: 8px 12px;
  border: 2px solid transparent;
  border-radius: 0px;
  box-shadow: none;
  transform: translate(0px, 0px);
  min-width: 0px;
  min-height: 0px;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}
#teleop {
  font-family: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--text);
  white-space: pre-wrap;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  word-break: break-word;
  overflow-wrap: anywhere;
}
#safeGuide {
  position: absolute;
  inset: 5% 10%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  pointer-events: none;
  display: none;
}
.screen-label {
  position: fixed;
  top: 16px;
  left: 16px;
  font-family: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 20;
  mix-blend-mode: screen;
}
