/* whi.net /word-unscrambler/ — additions on top of shared/styles/base.css + site.css
   (.hero h1, .no-results, details/summary styling live in site.css now,
   shared with other tool pages) */

#loading-note[hidden] {
  display: none;
}

#results {
  margin-top: var(--space-5);
}

.results-summary {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
}

.result-group {
  margin-bottom: var(--space-4);
}

.result-group h3 {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.word-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.word-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.word-chip__score {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}
