html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: #242424;
}

#root {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #eeeeee;
  font-family: "Noto Sans", sans-serif;
}

.panels {
  width: 98%;
  height: 98%;
  margin: 1%;
  display: flex;
  gap: 1rem;
}

.panel {
  width: 98%;
  height: 98%;
  padding: 1%;
  background: #101010;
  border: transparent solid 0;
  border-radius: 6px;
}

.panel p {
  margin: 0;
}

.code-editor {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0.5rem;
  font-family: Inconsolata, monospace;
  line-height: 20px;
}

.gutter {
  margin-top: 3px;
  display: flex;
  flex-direction: column;
}

.gutter-line-number {
  width: 1em;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: lightblue;
}

.text-input {
  width: 100%;
  height: 100%;
  cursor: text;
  padding-top: 2px;
}

.text-input p {
  font-size: 16px;
  color: #eeeeee;
}

.caret {
  margin-top: 2px;
  position: relative;
  width: 2px;
  height: 18px;
  background: white;
  animation-name: blink;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#compile-button {
  position: absolute;
  bottom: 1%;
  left: calc(50% - 5rem);
  width: 10rem;
  height: 3rem;
  background: #eeeeee;
  border: black solid 1px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
}

#compile-button:hover {
  scale: 1.1;
  border: black solid 2px;
  color: #147cff;
}
