.address-column, .delegate-column {
  width: 25%;
}

body {
  font-family: 'Space Grotesk', Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #232323;
  color: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  text-align: left;
  padding: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
}

th:hover {
  background-color: #555;
}

th {
  background-color: #333;
  font-weight: bold;
}

@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }
}
