

/* =========== TABLE results =============== */

.detailed-results {
	margin-top: -17px;
}
.detailed-results li {
    border-radius: 1px;
    padding: 5px 3px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
	margin-left: -40px;
    font-size: 13px;
    text-align: center;
  }
.detailed-results li.table-header {
    background-color: black;
    color: white;
    font-size: 14px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 1);
  }
.detailed-results li.table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
.detailed-results .task-title {
    width: 250px;
    text-align: left;
    text-indent: 10px;
  }
.detailed-results .time-title {
    width: 100px;
  }
.detailed-results .start-title {
    width: 150px;
  }
.detailed-results .stop-title {
    width: 150px;
  }
.detailed-results .duration-title {
    width: 50px;
  }
.detailed-results .state-title {
    width: 100px;
  }
.detailed-results .verdict-title {
    width: 100px;
  }
.detailed-results .task {
    width: 250px;
    text-align: left;
    text-indent: 10px;
  }
.detailed-results .time {
    width: 100px;
  }
.detailed-results .start {
    width: 150px;
  }
.detailed-results .stop {
    width: 150px;
  }
.detailed-results .duration {
    width: 50px;
  }
.detailed-results .state {
    width: 100px;
  }
.detailed-results .verdict {
    width: 100px;
  }

.detailed-results li.table-row-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);
  }
.detailed-results li.table-row-bug {
    background: linear-gradient(to right, rgba(89,214,245,0.6), rgba(89,214,245,0.6), rgba(89,214,245,0.6));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
.detailed-results li.table-row-bug-blocker {
    background: linear-gradient(to right, rgba(89,214,245,0.6), rgba(89,214,245,0.6), rgba(89,214,245,0.6));
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  }
.detailed-results li.table-row-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);
  }
.detailed-results li.table-row-disabled {
    background-color: rgba(155,155,155,0.6);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
    text-decoration: line-through;
  }
.detailed-results li.table-row-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);}
}
