* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

#remote {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  outline: none;
  cursor: default;
}

/* Only shown while connecting or on disconnect — never a persistent
   video-player-style control bar. */
.status {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font: 14px -apple-system, system-ui, sans-serif;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
