body {
  background: #333;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  padding: 16px;
}

table {
  background: white;
  border-radius: 5px;
  border-spacing: 1px;
}

table+table {
  margin-top: 1em;
}

th,
td {
  vertical-align: top;
}

tr:first-child th:first-child,
tr:first-child td:first-child {
  border-top-left-radius: 5px;
}

tr:first-child td:last-child,
tr:first-child th:last-child {
  border-top-right-radius: 5px;
}

tr:last-child th:first-child,
tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

tr:last-child td:last-child,
tr:last-child th:last-child {
  border-bottom-right-radius: 5px;
}

th,
td {
  text-align: left;
  padding: 8px;
  background: black;
}

th {
  padding: 12px;
  white-space: nowrap;
}

h1 {
  display: block;
  margin: 32px 0 0 0;
}

.bosses {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.boss {
  background-color: black;
  padding: 24px;
  margin-top: 24px;
  margin-right: 24px;
  border-radius: 10px;
}

.boss h2 {
  margin: 0 0 16px 0;
}

td [data-char] {
  float: left;
}

.char {
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 3px center;
  padding: 2px 4px 2px 28px;
  border: 1px solid transparent;
  border-radius: 4px;
  height: 24px;
  display: flex;
}

p .char {
  display: inline-block;
}

#groups td {
  cursor: pointer;
}

#groups td:hover {
  background-color: #333;
}

.highlight {
  border-color: #b70101 !important;
}

button {
    margin-top: 1em;
    background: none;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid white;
    color: white;
    cursor: pointer;
}

button:hover {
  background: black;
}