body {
  background: #1a1a1a;
}
#app .main {
  display: flex;
  overflow: hidden;
  align-items: stretch;
}

.header {
  color: #ffffff;
  padding-top: 4px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #383838;
  margin-bottom: 10px;
}

.main #editor {
  padding-top: 10px;
  margin: 10px 10px 0 0;
  font-size: 16px;
  flex: 0 0 50%;
}

.main #editor .CodeMirror {
  min-height: 100% !important;
}

.main #editor .CodeMirror-vscrollbar {
  scrollbar-width: none; /* firefox */
  -ms-overflow-style: none; /* IE 10+ */
  overflow: auto;
}

.main #editor .CodeMirror-vscrollbar::-webkit-scrollbar {
  display: none;
}

.main .json {
  flex: 0 0 50%;
  width: 500px;
  padding-right: 20px;
  box-sizing: border-box;
  font-size: 14px;
  max-height: 900px;
  scrollbar-width: none; /* firefox */
  -ms-overflow-style: none; /* IE 10+ */
  overflow: auto;
}

.main .json::-webkit-scrollbar {
  display: none; /* Chrome Safari */
}

.main .json > ul {
  padding: 10px !important;
  border-radius: 4px;
  margin-top: 20px !important;
  min-height: 100%;
  box-sizing: content-box;
}

.footer {
  color: rgb(219, 45, 32);
  padding: 16px;
  font-weight: 600;
}
