body,
html {
  background-color: #f8f8f8;
  font-size: 10pt;
  color: #232f59;
}
a,
a:link,
a:visited,
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}
h1,
h2 {
  color: #232f59;
}
h1 {
  font-size: 130%;
  line-height: 2rem;
}
h2 {
  font-size: 110%;
  line-height: 1.5rem;
}
.flash {
  background-color: #5394de;
  color: #f8f8f8;
  font-weight: bold;
  margin: .5rem 0;
  padding: 1rem;
}
.flash.success {
  background-color: #4ea77b;
}
.flash.error {
  background-color: #f44336;
}
.hidden {
  display: none;
}
header {
  padding: 1rem;
  background-color: #5394de;
  display: flex;
}
header .logo {
  width: auto;
  height: 2rem;
  vertical-align: bottom;
}
header h1 {
  display: inline-block;
  margin: 0;
  margin-left: 1rem;
}
header .logoutWrap {
  flex: 1;
  text-align: right;
}
header .logoutWrap a {
  vertical-align: sub;
}
#content {
  padding: .25rem;
}
.btn {
  background-color: #5394de;
  display: inline-block;
  padding: .25rem;
  user-select: none;
  border-radius: 2px;
}
.btn img {
  vertical-align: middle;
}
.btn.disabled {
  opacity: 0.8;
  filter: grayscale(0.8);
  pointer-events: none;
  user-select: none;
}
form table label,
form table input {
  margin: .25rem;
}
#pickReportFormWrap {
  margin: .5rem 0;
  background-color: #82aad3;
  padding: .5rem;
}
#pickReportFormWrap #pickReportForm .inputWrap label {
  display: inline-block;
  width: 20%;
}
#pickReportFormWrap #pickReportForm .inputWrap select {
  width: 75%;
}
@media all and (min-width: 30rem) {
  #pickReportFormWrap #pickReportForm .inputWrap {
    display: inline-block;
  }
  #pickReportFormWrap #pickReportForm .inputWrap label,
  #pickReportFormWrap #pickReportForm .inputWrap select {
    width: auto;
  }
  #pickReportFormWrap #pickReportForm .inputWrap:not(:first-of-type) label {
    margin-left: 1rem;
  }
}
#reportWrap {
  width: 100%;
  overflow: auto;
  margin-bottom: 4rem;
}
#reportWrap tbody td:first-child,
#reportWrap thead th:first-child {
  position: -webkit-sticky;
  /* for Safari */
  position: sticky;
  left: 0;
  background-color: #f8f8f8;
}
#reportWrap .dayName {
  font-size: 60%;
}
.reportTable th,
.reportTable tbody td:first-child {
  color: #5394de;
  font-weight: normal;
}
.reportTable td,
.reportTable th {
  padding: .25rem;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #82aad3;
}
.reportTable td.holiday,
.reportTable th.holiday {
  background-color: #e8e8e8;
}
.reportTable td.fuzzy,
.reportTable th.fuzzy {
  color: #a21309;
}
.summaryWrap {
  max-width: 25rem;
  margin: 0 auto;
}
.summaryWrap table {
  width: 100%;
}
@media all and (min-width: 30rem) {
  .summaryWrap {
    margin: 0;
  }
}
.modalWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(248, 248, 248, 0.8);
  z-index: 100;
  display: none;
}
.modalWrap.open {
  display: block !important;
}
.modalWrap .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-height: 95%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
.modalWrap .modal header {
  padding: 1rem 1.5rem;
  background: #82aad3;
  border-bottom: 1px solid #232f59;
  position: relative;
}
.modalWrap .modal header .hideModal,
.modalWrap .modal header .hideModal:hover,
.modalWrap .modal header .hideModal:active,
.modalWrap .modal header .hideModal:visited {
  position: absolute;
  line-height: 0;
  right: 0;
  top: 0.5rem;
  padding: 1rem;
  color: #232f59;
  background-color: inherit;
}
.modalWrap .modal main {
  padding: 1rem;
  overflow-y: auto;
  background-color: #f8f8f8;
}
#editReportForm label {
  white-space: nowrap;
}
#editReportForm input {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */