html, body {
  margin: 0;
  height: 100%;
  background: #0f1116;
  color: #e6e6e6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
}

#app {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#ui {
  position: fixed;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(15, 17, 22, 0.7);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

#status {
  font-weight: 600;
}

button#reset {
  background: #32374a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}

button#reset:hover {
  background: #3d435a;
}

#back {
  color: #9cb3ff;
  text-decoration: none;
}

#back:hover {
  text-decoration: underline;
}


