.color, .OnHold, .QueuedForRework, .MayBeScrappedReworked, .NotStarted, .Preproduction, .NotStarted, .SomeWorkDone, .PartiallyImplemented, .MostlyImplemented, .EssentiallyDone, .FullyImplemented{
  width: 80%;
  border-radius: 15px;
  text-align: center;
  margin: 0 10px 0 10px;
  color:white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black, -1px 1px 0 black, 1px -1px 0 black;
  font-weight: bold;
  float: none;
}


.OnHold{
  background-color: rgb(255, 128, 0);
}

.QueuedForRework{
  background-color: rgb(219, 0, 147);
}

.MayBeScrappedReworked{
  background-color: rgb(128, 50, 200);
}

.NotStarted{
  background-color: rgb(105, 0, 0);
}

.Preproduction{
  background-color: rgb(255,0,128);
}

.SomeWorkDone{
  background-color: rgb(170,57,113);
}

.PartiallyImplemented{
  background-color: rgb(85, 57, 71);
  border: 1px solid rgb(128, 128, 128);
}

.MostlyImplemented{
  background-color: rgb(64, 128, 64);
}

.EssentiallyDone{
  background-color: rgb(48, 191, 48);
}

.FullyImplemented{
  background-color: rgb(0, 255, 0);
}
