/* Ensure tables can break across pages */
#reportTableContainer {
  margin-top: 50px;
  border-radius: 50px;
  padding: 50px;
  background-color: #ededed;
  width: 80%;
}

#reportTable {
  border-collapse: collapse;
  width: 100%;
  height: 100%;
}

#reportTable thead {
  border-bottom: 1px solid black;
}

#reportTable th {
  color: #2469b3;
  font-size: 2.2rem;
  text-align: left;
  padding: 10px;
  border: none;
  background-color: #ededed;
}

#reportTable th:first-child {
  font-size: 2.6rem;
}

#reportTable tr td {
  border: none;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

#reportTable tr td:first-child {
  color: #b92025;
  font-weight: 700;
}

#reportTable tr td:first-child::before {
  content: "Incident #";
}

#reportTable tr:nth-child(even) {
  background-color: whitesmoke;
}

#reportTable tr:nth-child(odd) {
  background-color: #ededed;
}

.pagination + p {
  text-align: center;
}
