body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

#results.hidden {
  display: none;
}
.passed {
  color: green;
}
.failed {
  color: red;
}

.centered_block {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

button {
  border: 1px solid black;
  padding: 10px 20px;
  font-size: 15px;
}

.upload_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 3rem;
  font-size: 20px;
}


.upload_item > input[type="file"] {
  display: none;
}


.upload_item img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}


.game {
  border: 1px solid black;
  display: flex;
  flex-direction: column;
  height: 45em;
  width: 50em;
}

.top_blocks {
  flex-basis: 70%;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.map {
  border: 1px solid black;
  flex-basis: 70%;
}

.stats {
  border: 1px solid black;
  flex-basis: 40%;
  padding-top: 3em;
}

.logs {
  border: 1px solid black;

  flex-basis: 30%;
}

#options_block {
  display: none;
}
