* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  margin: 0;
  padding: 0;
}

body {
  background: #121212;
  color: white;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  touch-action: none;
  padding: 5px;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* MAIN LAYOUT */
.remote-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1vh;
  width: 98vw;
  height: 94dvh;
}

.column-stack {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  height: 100%;
  min-height: 0;
}
