html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed
}

#editor {
  width: 100vw;
  height: var(--editor-height, 100dvh);
  padding: 16px;
  box-sizing: border-box;
  overflow-y: auto;
}

#editor:focus {
  outline: 0;
}

#hidden-input {
  position: absolute;
  top: -1000px;
  left: -1000px;
}

#bar {
  position: fixed;
  left: 0;
  width: 100vw;
  visibility: hidden;
  height: 44px;
  display: flex;
  background-color: white;
  justify-content: center;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
}

button {
  height: 44px;
  width: 44px;
  border: 0;
  background-color: transparent;
  color: black;
  font-weight: bold;
  cursor: pointer;
}