/* fixed-headers stolen from https://stackoverflow.com/questions/50250884/css-fixed-header-for-table-without-specify-width */
.fixed-headers {
  position: relative;
  overflow-x: scroll;
  overflow-y: scroll;
}

.fixed-headers table {
  table-layout: fixed;
}

.fixed-headers thead tr th {
  position: sticky;
  top: 0px;
  background: #006688;
  color: white;
}
