:root {
  color-scheme: light dark;
  font-family: system-ui, sans-serif;
}

body {
  margin: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #8884;
}

.nav .brand {
  font-weight: bold;
  margin-right: auto;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}

.thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}

.full-image {
  max-width: 100%;
  max-height: 70vh;
  display: block;
  margin-bottom: 1rem;
}

.error {
  color: #c00;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}

th,
td {
  text-align: left;
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid #8884;
}
