* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.top-pane {
  display: flex;
  flex: 1;
  background-color: lightblue;
  height: 50vh;
  /* overflow: hidden; */
}
.code-editors {
  display: flex;
  flex: 1;
}
.editor {
  /* margin: 10px; */
  /* display: flex; */
  flex: 1;
  /* margin: 10px; */
  /* padding: 10px; */
  /* height: 100%; */
  /* margin: 20px 10px 40px 10px; */
  margin: 10px;
}
.editor textarea {
  width: 100%;
  height: 90%;
  resize: none;
  padding: 10px;
}

.bottom-pane {
  flex: 1;
  /* background-color: lightgreen; */
  height: 50vh;
}
#iframe-ele {
  width: 100%;
  height: 100%;
  border: none;
}

.CodeMirror {
  width: 100%;
  height: 92%;
  max-height: 40vh;
  max-width: 32vw;
}

@media (max-width: 800px) {
  .top-pane {
    display: block;
    flex: unset;
    height: 100%;
  }

  .code-editors {
    flex-direction: column;
    height: 100vh;
    flex: unset;
  }

  .editor {
    flex: unset;
    height: 100%;
  }

  .CodeMirror {
    width: 100%;
    height: 90%;
    max-height: 25vh;
    max-width: 90vw;
  }
}
