h1 {
  text-align: center;
  font-size: 200%;
}

h2 {
  grid-column: 1/3;
  text-align: center;
}

.container {
  display: grid;
  margin-left: auto;
  margin-right: auto;
}

.dailyContainer,
.sumHours {
  display: grid;
  break-inside: avoid-column;
  grid-template-columns: 1fr 1fr;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.weeklyContainer {
  column-count: 3;
  column-span: none;
  padding-top: 1%;
  /* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 95%;
    margin-left: auto;
    margin-right: auto; */
}
label {
  text-align: right;
  font-size: larger;
  padding-right: 5%;
}

#employeeLabel {
  padding-right: 1%;
  font-weight: 700;
}

#employeeField {
  background-color: #fff;
  width: 10%;
  padding: 3px 7px;
  border: 1px solid #a6a6a6;
  border-top-color: #949494;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgb(255 255 255 / 50%), 0 1px 0 rgb(0 0 0 / 7%) inset;
  outline: 0;
  color: #111;
  font-size: 16px;
}

#sumHours {
  padding-top: 10%;
}

.timepicker:focus {
  border-color: #e77600;
  box-shadow: 0 0 3px 2px rgb(228 121 17 / 50%);
}

.employeeNumber {
  font-size: 20px;
  font-weight: 700;
  height: 50px;
  padding: 1%;
}

input[type="text"] {
  margin-bottom: 5%;
  background-color: #fff;
  height: 31px;
  width: 50%;
  padding: 3px 7px;
  line-height: normal;
  border: 1px solid #a6a6a6;
  border-top-color: #949494;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgb(255 255 255 / 50%), 0 1px 0 rgb(0 0 0 / 7%) inset;
  outline: 0;
  color: #111;
  font-size: 16px;
}

main {
  background-color: whitesmoke;
}

#refreshbtn {
  background-image: linear-gradient(#42a1ec, #0070c9);
  border: 1px solid #0077cc;
  border-radius: 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  direction: ltr;
  font-family: "SF Pro Text", "SF Pro Icons", "AOS Icons", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.47059;
  min-width: 30px;
  overflow: visible;
  padding: 4px 15px;
  text-align: center;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  width: 80%;
}

#refreshbtn:disabled {
  cursor: default;
  opacity: 0.3;
}

#refreshbtn:hover {
  background-image: linear-gradient(#51a9ee, #147bcd);
  border-color: #1482d0;
  text-decoration: none;
}

#refreshbtn:active {
  background-image: linear-gradient(#3d94d9, #0067b9);
  border-color: #006dbc;
  outline: none;
}

#refreshbtn:focus {
  box-shadow: rgba(131, 192, 253, 0.5) 0 0 0 3px;
  outline: none;
}

@media print {
  @page {
    size: landscape;
  }
  body {
    width: 1400px;
  }
  #refreshbtn {
    display: none;
  }
  #oldCalcLink {
    display: none;
  }
}

#calcLogo {
  float: left;
  height: 3em;
}

#oldCalcLink {
  float: right;
  padding-right: 1%;
}
