/*Shared css file*/

/* Sets display for Phast Logo */
.phastLogo {
     display: block;
}

/* Sets style relating to the link to the main page that exists on the logo */
.phastLogoImageLink {
    width: 500px;
    margin: 0 auto;
    display: block;
}

table.center {
    margin-left: auto;
    margin-right: auto;
}

table.highlight tr:hover td {
    background-color: #ffff99;
}

.row, .deviceRow {
    display: flex;
    flex-direction: row;
}

.deviceRow {
  gap: 2em;
}

.column, .deviceCol {
    display: flex;
    flex-direction: column;
}

body {
  font: 16px Arial;
}

table {
  border-collapse: collapse;
  font-family: sans;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/** Sets up borders with thick vertical borders and light horizontal borders */
th,td {
  border-right: solid thin black;
  border-left: solid thin black;
  border-bottom: solid thin #C0C0C0;
  border-collapse: collapse;
}

/* Gives a nicy heavy bottom line to a table */
td.lastRow {
  border-bottom: solid thin black;
}

th {
  background-color: LightGray;
}

.stickyHeaderTable th,td {
  border-collapse: separate;
  border-top: none !important;
}


.stickyHeaderTable {
  overflow-y: scroll;
  flex-grow: 1;
}

.stickyHeaderTable tr.stickyHeaders th{
    position: sticky;
    top: 0;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: inset 0 1px 0 #000000,
                inset 0 -1px 0 #000000;
    border-color: Black;
}

.queries {
  display: flex;
  text-align: right;
  flex-direction: column;
  margin: auto;
  width: 18em;
  padding: 10px;
}

.queryElement {
  padding: 0.2em;
}

.queryElement > label {
  float: left;
}

button.firstPage, button.prevPage, button.nextPage, button.lastPage {
  font-size: 9px;
}

.deviceCol {
  float: left;
  gap: 1em;
  width: 20em;
}

.deviceCol, .deviceValue, .deviceButton {
  float: right;
}

.deviceButton, .locationButton {
  margin-left: 1em;
}

.text-center {
  text-align: center;
}

code {
  white-space: pre-wrap;
  margin: 0em;
}

.cannot-access {
  display: none;
}

.qcPass {
  color: green;
} 

.qcFail {
  color: red;
}