@import url(/global/global-banner-light.css);

th {
  background-color: rgb(245, 187, 71);
  color: black;
  top: 0;
  position: sticky;
  font-weight: 600;
}
#mytable {
  width: 100%;
}
td {
  line-height: auto;
  width: fit-content;
  white-space: nowrap;
  cursor: pointer;
}
.workcol,
.workcol pre {
  width: auto;
  white-space: break-spaces;
}
tr:nth-child(even) {
  transition: background-color 0.25s;
  background-color: rgba(245, 187, 71, 0.3);
}
tr:hover td,
tr:hover pre {
  transition: background-color 0.25s;
  background-color: rgb(245, 187, 71);
}
.search_wrapper {
  width: 100%;
  background-image: url(/global/assets/images/magnifying-glass_light.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 8px;
}
.searchbox {
  width: inherit;
  height: 4vh;
  border: solid 3px rgba(245, 187, 71, 0.3);
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  transition: border-color 0.5s;
  padding-left: 28px;
  background-color: transparent;
}
.searchbox:focus,
.searchbox:hover {
  transition: border-color 0.5s;
  border-color: rgb(245, 187, 71);
}
.searchCount {
  display: block;
  text-align: right;
  align-content: flex-end;
}
.table {
  display: grid;
  width: 8.5in;
  height: 10.5in;
  grid-template-columns: 20% 20% 20% 20% 20%;
  grid-template-rows: 20% 10% 2.5% min-content 2.5% 7% 3.5%;
}
.logoleft {
  grid-row: 1;
  grid-column: 1;
}
.logoright {
  grid-row: 1;
  grid-column: 5;
}
.h1 {
  grid-row: 1;
  grid-column: 3 span;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  transform: translateY(45%);
}
.billto {
  grid-row: 2;
  grid-column: 1;
}
.billinginfo {
  grid-row: 2;
  grid-column: 2 span;
}
.datelabels {
  grid-row: 2;
  grid-column: 4;
}
.dateinfo {
  grid-row: 2;
  grid-column: 5;
}
.descriptionheader {
  grid-row: 3;
  grid-column: 5 span;
  border-bottom: solid 3px rgb(245, 221, 172);
}
.completeditems {
  grid-row: 4;
  grid-column: span 5;
}
.completeditems pre {
  grid-row: 4;
  grid-column: span 5;
  white-space: break-spaces;
}
.timedetailheader {
  grid-row: 5;
  grid-column-start: 1;
  grid-column-end: 6;
  border-bottom: solid 3px rgb(245, 221, 172);
}
.timeinheader {
  grid-row: 5;
  grid-column: 3;
}
.timeoutheader {
  grid-row: 5;
  grid-column: 4;
}
.hoursheader {
  grid-row: 5;
  grid-column: 5;
}
.employeeheader {
  grid-row: 6;
  grid-column: 1;
}
.employeenameheader {
  grid-row: 6;
  grid-column: 2;
}
.timein {
  grid-row: 6;
  grid-column: 3;
}
.timeout {
  grid-row: 6;
  grid-column: 4;
}
.hours {
  grid-row: 6;
  grid-column: 5;
}
.totalduelabel {
  grid-row: 7;
  grid-column: 4;
  border-top: solid 3px rgb(201, 42, 32);
  border-bottom: solid 3px rgb(201, 42, 32);
  border-left: solid 3px rgb(201, 42, 32);
  padding-top: 4px;
  padding-left: 6px;
}
.totalhours {
  grid-row: 7;
  grid-column: 5;
  border-top: solid 3px rgb(201, 42, 32);
  border-right: solid 3px rgb(201, 42, 32);
  border-bottom: solid 3px rgb(201, 42, 32);
  padding-top: 4px;
  padding-right: 6px;
  width: min-content !important;
}
.dashedline {
  display: inline;
  color: lightgray;
  font-weight: 400;
}
.label {
  font-weight: 600;
}
.editlink {
  grid-row: 7;
  grid-column: span 3;
}
#edit {
  grid-row: 7;
  grid-column: span 3;
  appearance: none;
  box-sizing: content-box;
  background-color: rgb(245, 187, 71);
  border: solid 3px rgb(245, 187, 71);
  color: rgb(201, 42, 32);
  border-radius: 5px;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  font-size: 16px;
}
#edit:active,
#edit:focus,
#edit:hover {
  background-color: rgb(201, 42, 32);
  border: solid 3px rgb(201, 42, 32);
  border-radius: 5px;
  color: rgb(245, 187, 71);
}
@media print {
  #edit {
    display: none;
  } 
}