body {
  background-color: black;
  color: white;
  font-family: Verdana;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.4s ease;
}

p,
details,
table {
  margin: 1rem;
}

a {
  color: red;
  text-decoration: none;
}

a:hover {
  color: white;
}

button {
  background: red;
  color: black;
  border: none;
  padding: 5px 10px;
  margin: 5px 2px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.1s ease;
}

button:hover {
  color: white;
}

button.shown {
  background: red;
}

button.shown:hover {
  color: white;
}

button.hidden {
  background: white;
}

button.hidden:hover {
  color: red;
}

button.unavailable {
  background: #920000;
  color: black;
  cursor: not-allowed;
}

details {
  line-height: 2;
}

details details {
  margin: 1rem 0;
}

table {
  border-collapse: collapse;
}

tr > * {
  padding: 0.5rem;
}

th, td {
  background-color: black;
  text-align: left;
}

td {
  width: auto;
  height: auto;
  overflow-wrap: break-word;
}

table img {
  margin: 0;
  height: 50px;
}