* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #fff;
  color: #222;
  font:
    16px/1.5 Arial,
    sans-serif;
}
header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 22px 5%;
  z-index: 2;
}
.logo {
  text-decoration: none;
  color: #111;
  font-size: 30px;
  letter-spacing: -2px;
}
.logo span {
  font-weight: 800;
}
.one {
  color: #e7bd00;
}
.two {
  color: #15823a;
}
.three {
  color: #d61c28;
}
main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}
h1 {
  font-size: 32px;
  font-weight: 500;
}
p {
  color: #666;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th,
td {
  padding: 18px 12px;
  border-bottom: 1px solid #eee;
}
th {
  font-size: 14px;
  color: #555;
}
td:last-child,
th:last-child {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
td a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}
td small {
  display: block;
  color: #666;
  font-weight: 400;
}
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 28px 0;
}
button {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 10px 18px;
  color: #333;
  cursor: pointer;
}
button:disabled {
  opacity: 0.4;
  cursor: default;
}
.note {
  font-size: 13px;
}
#message:empty {
  display: none;
}
@media (max-width: 600px) {
  main {
    padding: 0 12px;
    margin-top: 24px;
  }
  th,
  td {
    padding: 14px 6px;
    font-size: 14px;
  }
  h1 {
    font-size: 26px;
  }
  nav {
    gap: 12px;
  }
  td a {
    overflow-wrap: anywhere;
  }
}
