/* Split the screen in half */
.split {
  height: 100%;
  width: 50%;
  overflow-x: hidden;
  padding-top: 20px;
}

/* Control the left side */
.left {
  left: 0;
  background-color: #111;
}

/* Control the right side */
.right {
  right: 0;
  background-color: red;
}

/* If you want the content centered horizontally and vertically */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style the image inside the centered container, if needed */
.centered img {
  width: 150px;
  border-radius: 50%;
}

.new {
	background-color: #00d8ff;
}
.queued {
	background-color: #e900ff;
}
.denied {
	background-color: #898989;
}
.wip {
	background-color: #ff9d00;
}
.testing {
	background-color: #f6ff00;
}
.db {
	background-color: #eeeeee;
}
.done {
	background-color: #65ff00;
}