@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

.cm-editor {
  font-family: "Ubuntu Mono";
  line-height: 1.2em;
  width: 100%;
  height: 100vh;
}

body, html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
}

#header {
  background: #082032;
  width: 100vw;
  display: flex;
  align-items: center;
  color: white;
  font-family: 'Roboto', sans-serif;
}

#header_left {
  display: flex;
  align-items: center;
  color: white;
}

#header div {
  width: 100%;
}

#ide-run svg {
  width: 30px;
}

#ide-run span {
  margin-left: 10px;
  margin-right: 10px;
}

#ide-run {
  display: flex;
  align-items: center;
  background-color: black;
  color: white;
  font-weight: bold;
  float: right;
}

#ide {
  display: flex;
}

#editor {
  width: 100%;
}

#console-wrapper {
  width: 100%;
  background: #2C394B;
  color: white;
  font-family: 'Roboto', sans-serif;
}

#console {
  padding: 10px;
}