body,
html {
  margin: 0;
  padding: 0;
}

#container {
  width: 100dvw;
  height: 100dvh;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(724px, 1fr) minmax(120px, 440px);
}

#panel {
  background-color: #222222;
  display: grid;
  grid-template-rows: 44px 1fr;
  grid-template-columns: 1fr;
  border-left: 3px solid #333333;
  overflow: hidden;
}

#scroll {
  overflow-y: scroll;
}

#editor {
  width: 100%;
  height: 100%;
}

#actions {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

#output {
  list-style-type: none;
  color: white;
  padding: 0;
  margin: 0;
  font-family: monospace;
}

#output > li {
  padding: 4px 16px;
  border-top: 1px solid #555;
}

button {
  -webkit-appearance: button;
  appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
  border: none;
  color: white;
  background: rgb(6, 150, 14);
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 128px;
}
