body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

button {
  padding: 0.6em 1.4em;
  font-size: 1rem;
  cursor: pointer;
}

#result {
  margin-top: 1em;
  font-size: 1.2rem;
}

table {
  margin-top: 1em;
  border-collapse: collapse;
}

td {
  padding: 0.3em 0.8em;
  font-size: 1.1rem;
}

td:last-child {
  word-break: break-all;
  min-width: 6em;
  max-width: min(60vw, 20em);
}

td:first-child {
  font-weight: bold;
  text-align: right;
  color: #555;
}

#github-link {
  position: fixed;
  bottom: 0.8em;
  left: 0.8em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4em 0.75em;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #999;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

#github-link:hover {
  color: #222;
  border-color: #ddd;
  background: #f9f9f9;
}

#github-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

#github-link:hover svg {
  opacity: 1;
}
