body {
  font-family: "lato", sans-serif;
}

a:link { color: rgba(0,0,0,0.9); text-decoration: underline;}
a:visited { color: rgba(0,0,0,0.9); text-decoration: underline; }
a:hover { color: #efb93b; text-decoration: underline; }

.container {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

h2 {
  font-size: 20px;
  text-align: center;
  background-color: rgba(255,255,255,0.3);
}
h2.pass {
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(89,245,160,0.9), rgba(0,0,0,1));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
h2.known-issue {
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(251,214,109,0.9), rgba(0,0,0,1));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
h2.between {
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(245,214,89,0.9), rgba(0,0,0,1));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
h2.fail {
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(245,89,100,0.6),rgba(0,0,0,1));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
h2.running {
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
    animation-name: running-animation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
  }
@keyframes running-animation {
  from {background-color: rgba(154,50,204,0.6);}
  to {background-color: rgba(154,50,204,0.3);}
}

/* =========== TABLE SECTION =============== */
.title-section li {
    text-align: center;
    border-radius: 1px;
    padding: 5px 3px;
    justify-content: space-between;
    margin-bottom: 2px;
    display: block;
	margin-left: -40px;
    font-size: 20px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.4);
    font-weight: bold;
  }
.title-section li.test-name {
    background-color: black;
    color: white;
    font-size: 20px;
  }
.title-section li.test-verdict-pass {
    background: linear-gradient(to right, rgba(89,245,160,0.6), rgba(89,245,160,0.6), rgba(89,245,160,0.6));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
.title-section li.test-verdict-known-issue {
    background: linear-gradient(to right, rgba(251,214,109,0.6), rgba(251,214,109,0.9), rgba(251,214,109,0.6));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
.title-section li.test-verdict-between {
    background: linear-gradient(to right, rgba(245,214,89,0.6), rgba(245,214,89,0.9), rgba(245,214,89,0.6));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
.title-section li.test-verdict-fail {
    background: linear-gradient(to right, rgba(245,89,100,0.6), rgba(245,89,100,0.6),rgba(245,89,100,0.6));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
.title-section li.test-verdict-running {
    animation-name: running-animation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
  }
.tenant-opts {
    font-size: 13px;
}
/* =========== GLOBAL INFORMATION SECTION =============== */
.table-global-information{
    width: 100%;
    margin:auto;
    font-size: 15px;
    font-weight: 300;
	margin-left: -3px;
}
.table-global-information td.title{
    text-align: left;
    text-indent: 10px;
    background: linear-gradient(to right, rgba(80,120,207,0.7), transparent);
    font-weight: bold;
}
.table-global-information td{
    text-align: left;
    background-color: rgba(255,255,255,0.3);
}
.title-section li.test-name a {
  color: inherit;
}