html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto; 
    background-color: rgb(30,32,36);
    color:white;
    font-family: "Arial"
  }


#main {
  height: 100%;
  width: 100%;

}


.titleContainer {
  border-style: solid;
  border-radius: 3px;
  border-width:1px;
  border-color:rgb(40,42,47);
  padding:8px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.titleContainer * {
  margin: 3px;
}

.status {
  width:25px;
  height:25px;
  border-radius: 3px;
}

.successEntry {
  background-color: rgb(52,72,34);
}

.successEntry:hover {
  background-color: rgb(102,166,30);
  width:25px;
  height:25px;
}

.failedEntry {
  background-color: rgb(217,95,2);
}

.failedEntry:hover {
  background-color: rgb(255,153,4);
  width:25px;
  height:25px;
}

.inProgressEntry {
  background-color: rgb(117,112,179);
}
.testName {
  background-color: rgb(30,32,36);
  border-style:solid;
  width:25px;
  height:25px;
  border-radius:5px;
  border-width:1px;
  border-color:rgb(40,42,47);
}

.commitDiv {
  margin: auto;
  border-style:solid;
  width: 50px;
  height:15px;
  border-radius:100px;
  border-width:1px;
  border-color:rgb(40,42,47);
}



.mainTable {
  border-spacing: 0px;
  border-style: solid;
  border-color:gray;
  border-width:2px;
  padding: 10px;
}


th {
  padding:2px;
  height: 20px;
  font-weight: normal;
}

tr {
  background-color  : rgb(17,19,24);
  height: 20px;
}
tr:nth-child(2n + 1) {
  background-color: rgb(29,32,36);
}
tr:nth-child(1), tr:nth-child(2) {
  background: rgb(17,19,24);
}
  

.popup {
  border-style: solid;
  border-width:1px;
  position:fixed;
  top: 50%;
  left: 50%;
  background-color: rgb(30,32,36);
  height:400px;
  width: 400px;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.popup * {
  margin:10px;
}

.successStep {
  background-color: rgb(102,166,30);
}

.failedStep {
  background-color: rgb(217,95,2);
}

.inProgressStep {
  background-color: rgb(117,112,179);
}

.stepTable {
  border-spacing: 0px 3px;
}

.stepTable tr {
  background-color  : rgb(17,19,24);
}

.exitButton {
  position: fixed;
  top:0px;
  right:0px;
}

.hide {
  visibility: hidden;
}

.LogArea {
  width: auto;
  height: 200px;
  background-color: white;
  color: black;
  overflow:scroll;
}

.left-right-flow {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 25px;
  overflow-y: scroll;
}


#ExtraDiv {
  padding: 10px;  
}
#InternalExtraDiv {
  background-color: rgb(38, 39, 41);
  border-color: rgb(17,19,24);
  width: 100px;
  padding: 5px;
  border-radius: 5px;
  border-style: solid;
  text-align: center;
  margin: 0 auto;
}

a {
  color:rgba(156, 177, 255, 0.801);
}

.commitMessage {
  overflow-y: scroll;
  width: auto;
  max-width: 300px;
  height: 40px;
}

::-webkit-scrollbar {
  width: 4px; 
  height: 4px; 
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.filterPopup {
  position: absolute;
  background-color: rgb(15, 14, 14);
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color:rgb(77, 75, 73);
  padding: 5px;
}

.filterPopup label {
  font-size: 12px;
  margin: 5px;
}

.filterPopup label input {
  height: 12px;
  width: 12px;
  margin: 3px;
}

.filterPopup button {
  background-color: rgb(26, 24, 24);
  color: white;
  margin: 3px;
  border-radius: 5px;
}

.filterButton {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid rgb(84, 84, 85);
}

.highlight.log {
  background-color: rgb(125, 31, 0);
  transition: background-color 0.3s ease;
}

.perm-highlight {
  background-color: rgb(230, 230, 255);
}

.log {
  margin:0px;
  padding: 3px;
}

#header_bar {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

