body {
  margin: 0;
}

#editor {
  border: 1px solid grey;
  height: 80vh
}

.column {
  flex: 50%;
  padding: 10px
}

.container {
  display: flex;
}

.testPasslight {
  background: #aaffaa;
}

.testFaillight {
  background: #ffaaaa
}

.testPassdark {
  background: #4c784c;
}

.testFaildark {
  background: #9f6161
}

#results.darkmode {
  color: white;
}

#controls {
  padding: 10px;
  background-color: #c6c6c6;
}

ul {
  margin: 0
}

.error {
  color: red;
}

#filename {
  border: 1px solid #c6c6c6;
  display: inline-block;
  width: fit-content;
}

#filename:hover {
  border: 1px solid gray;
}

#saveButtons {
  display: inline-block;
  padding-left: 25px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

table {
  width: 100%
}

th {
  text-align: left;
}

button {
  display: inline-block;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  padding: 12px 24px;
  border: 0;
  color: #3a4149;
  background: #e7ebee;
  line-height: 1.15;
  font-size: 16px;
  margin: 0px 10px;
}

button:hover {
  transition: all .1s ease;
  box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(116, 31, 138, 1);
}