@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');

body {
  background-color: white;
}

#main {
  overflow-x: hidden;
  overflow-y: hidden;
}

#config_pane {
    background-color: rgba(32, 26, 33, 1);
    height: 100vh;
    padding-left: 40px;
    padding-top: 30px;
}

#sub_heading {
  color: rgba(255, 166, 0, 1);
  font-size: 17px;
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 20px;
}

#data_view_heading {
  font-size: 40px;
  padding-left: 40px;
  padding-top: 35px;
}

#title_hr {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border: 0.5px solid black;
}

#app_name {
  color: white;
  font-size: 50px;
  font-family: "Source Serif Pro"
}

#view_pane {
    background-color: white;
}

.hidden_field {
  height: 0px;
  width: 0px;
}

#welcome_message {
  padding-left: 30px;
}

.show_config_button {
    color: black;
    width: 50%;
    height: 30px;
    font-size: 16px;
    background-color: white;
    margin-top: 20px;
    text-align: center;
    font-family: "Open Sans";
    padding-top: 2px;
}

#config_div {
    width: 700px;
    height: calc(100vh - 40px);
    background: white;
    position: absolute;
    z-index: 99;
    margin-left: calc(50% - 250px);
    top: 20px;
    outline-style:none;
    overflow-y: scroll;
    border: 1px solid black;
    padding: 20px;
}

pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }