body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

h1 {
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.subtitle {
  margin-top: 0;
  margin-bottom: 28px;
  color: #555;
}

.search-section {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.search-section input {
  flex: 1;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.search-section button,
.reset-section button,
.match-button {
  padding: 12px 16px;
  font-size: 1rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.search-section button,
.reset-section button {
  background: #222;
  color: white;
}

.status {
  min-height: 24px;
  margin-bottom: 20px;
  color: #444;
}

.matches {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.match-button {
  text-align: left;
  background: white;
  border: 1px solid #ddd;
}

.match-descriptor {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #666;
}

.results {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.result-block + .result-block {
  margin-top: 20px;
}

.hidden {
  display: none;
}

.reset-section {
  margin-top: 12px;
}
