* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101010;
  color: #e8e8e8;
  font-family: system-ui, -apple-system, sans-serif;
}

main {
  width: min(90vw, 480px);
}

h1 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #888;
  margin: 0 0 1.5rem;
}

.sites {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sites li {
  border-bottom: 1px solid #222;
}

.sites a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.25rem;
  text-decoration: none;
  color: inherit;
}

.sites img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}

.sites .title {
  flex: 1;
  font-size: 1rem;
}

.sites .version-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  color: #888;
}

.sites select {
  background: transparent;
  color: #888;
  border: 1px solid #333;
  border-radius: 4px;
  font: inherit;
  padding: 0.1rem 0.3rem;
}

.empty {
  color: #666;
  font-size: 0.9rem;
}
