body {
  background-color: #0d1117;
  padding-top: 60px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

h3 {
  color: #fff;
}

html {
  overflow-y: scroll;
}

.chump_table {
  color: #fff;
  display: inline-block;
  border-collapse: separate; /* Use separate to allow border-radius to work */
  border-spacing: 0; /* Remove any spacing */
  border-radius: 8px;
  overflow: hidden; /* Ensure the border-radius is not clipped */
}

thead tr {
  background-color: #2e333a;
  border: 1px solid #2e333a; /* Use border instead of outline */
}

th {
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
}

thead, th, td {
  box-sizing: border-box;
}

tbody {
  border-style: solid;
  border-color: #2e333a;
  border-width: 1px;
}

tbody tr:last-of-type :first-child{
  background-color: #161b22;
}

tbody tr:last-of-type :last-child{
  background-color: #161b22;
}

td:not(tr:last-of-type :last-child){
  background-color: #161b22;
}

td {
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
}

.chump_table tbody tr:hover td {
  background-color: #2e333a;
}