body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
  background-color: rgb(196, 192, 192);
  transition: 0.7s;
}

.dark-mode {
  background-color: #38444d;
  color: white;
  transition: 0.7s;
}
#editor-container {
  display: flex;
  flex-direction: column;
  width: 90%;
  font-family: Arial, sans-serif;
}
.editor {
  height: 100%;
  margin: 10px 0;
  font-family: Arial, sans-serif;
}
#output {
  height: 400px;
  width: 100%;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 10px;
}
#buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
button {
  padding: 10px 20px;
  background-color: rgb(29, 155, 240);
  color: white;
  height: 50px;
  width: 100px;
  border-color: orange;
  border-radius: 50px;
  border-style: solid;
  cursor: pointer;
  border-width: 1.50px;
  margin-left: 2px;
  font-weight: bold;
  font-size: 12.5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}

button:hover {
  background-color: rgb(4, 125, 206);
}

#theme-selector {
  background-color: orange;
  border-radius: 25px 10px 25px 10px;
}

#theme-selector:hover {
  background-color: rgb(206, 137, 7);
}

.cm-s-nature .CodeMirror-cursor {
border-left: 2px solid #0af185;

}
.cm-s-nature .CodeMirror-gutters {
background: #178d0c;
border-right: 1.50px solid #5d2c04;
}

.cm-s-nature .CodeMirror-linenumber {
color: #7f3fef;
}

.cm-s-nature .CodeMirror-selected {
background: #801f02;
}

.cm-s-nature .cm-keyword {
color: #ff79c6;
}

.cm-s-nature .cm-variable {
color: #5b0cdb;
}

.cm-s-nature .cm-string {
color: #e90b0b;
}

.cm-s-nature .cm-comment {
color: #584ad2;
}

.cm-s-nature .cm-let {
  color: green;
}



#tooltip {
  position: absolute;
  display: inline-block;
  right: 10;
  }
  
  #question-mark {
  cursor: pointer;
  width: 20px;
  height: 18.50px;
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 10;
  top: 3;
  line-height: 20px;
  border-radius: 50%;
  background-color: #f0b30a;
  }
  
  #tooltip-text {
  visibility: hidden;
  width: 500px;
  height: 475px;
  font-size: 13;
  background-color: #a38989;
  color: black;
  text-align: center;
  border-radius: 12px;
  padding: 10px;
  position: absolute;
  right: 5%;
  top: 25%;
  z-index: 1;
  margin-left: 0px;
  opacity: 0;
  transition: opacity 0.5s;
  }
  
  #tooltip:hover #tooltip-text {
  visibility: visible;
  opacity: 1;
  }

  #version-info {
    font-size: 11;
  }