body {
  background-color: rgb(211, 211, 211);
  color:rgb(59, 59, 59);
}
h3{
  padding: 10px;
  margin: 0px;
}
small{
  font-size: 10px;
}

footer{
  text-align: center;
  margin: 50px;
}

.status{
  text-align: right;
}

.result tr{
    border-bottom: 1px solid rgb(199, 199, 199);
}

.result td{
    border-right: 0px solid var(--primary-color);
    border-left: 0px solid var(--primary-color);
}

.result{
  border: 0px solid var(--primary-color);
}

.desc{
  padding: 16px;
}

.alert{
  padding: 16px;
  background-color: rgb(255, 0, 76)!important;
  color:rgb(241, 241, 241)!important;
}

.warn{
  padding: 16px;
  background-color: rgb(255, 157, 0)!important;
}

.allclear{
  padding: 16px;
  background-color: rgb(22, 158, 117)!important;
  color:rgb(241, 241, 241)!important;
}

.section{
  background-color: rgb(241, 241, 241);
  margin-bottom: 20px;
}

.section-title{
  background-color: rgb(230, 230, 230);
  color:rgb(93, 93, 93);
  font-weight: normal;
}

.graph {
  text-align: center;
}

.square {
  height: 30px;
  width: 6px;
  margin-left: 2px;
  display: inline-block;
  background-color: rgb(221, 221, 221);
}
.dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
}

.dot-ok:hover{
  background-color: rgb(28, 221, 163);
}
.dot-fail:hover{
  background-color: rgb(255, 81, 133);
}
.dot-warn:hover{
  background-color: rgb(255, 208, 0);
}
.dot-ok{
  background-color: rgb(22, 158, 117);
}
.dot-fail{
  background-color: rgb(255, 0, 76);
}
.dot-warn{
  background-color: rgb(255, 157, 0);
}
.fail{
  color: rgb(255, 0, 76);
}

.ok{
  color: rgb(22, 158, 117);
}