* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
  height: 12vh;
}

.topnav img {
  border-style: none;
  margin: 0 5px;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav p {
  /* align-content: center; */
  text-align: center;
  font-size: x-large;
  color: white;
  font-style: bold;
  font-weight: bold;
}

/* Style the content */
.content {
  padding: 10px;
  display: table;
}

.content summary {
  font-size: small;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  margin-top: auto;
  font-size: x-small;
}

/* Style Known Issues Table */
.issues {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.issues td, .issues th {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: smaller;
}

.issues tr:nth-child(even){background-color: #f2f2f2;}

.issues tr:hover {background-color: #ddd;}

.issues th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #0d754f;
  color: white;
}

.pagination-controls {
  float: right;
}

.pagination-controls button {
  padding: 4px 10px;
  margin: 0 2px;
  font-size: xx-small;
  background-color: #121916;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.pagination-controls button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

