/* The one reseller theme - dark, categorized text list. Palette is
   deliberately the well-tested GitHub-dark combination (high contrast,
   nothing novel to get wrong), not something invented from scratch. The
   listing content is real DOM elements with actual visual hierarchy
   (length header > band label > name list), not a flat <textarea> where a
   category heading and a username were indistinguishable from each other -
   that flatness, not the colors alone, was most of why it was unreadable. */
:root {
  --bg: #0d1117;
  --panel: #161b22;
  --panel-alt: #1c2128;
  --border: #30363d;
  --text: #e6edf3;
  --text-dim: #8b949e;
  --accent: #58a6ff;
  --on-accent: #0d1117;
  --font-display: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --font-body: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --radius: 6px;
}

.paste-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.paste-toolbar button {
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  cursor: pointer;
}
.paste-toolbar button:hover { opacity: 0.9; }

.paste-doc {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.paste-length-group + .paste-length-group { margin-top: 1.75rem; }

.paste-length-header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 0.85rem;
}
.paste-length-count { font-size: 0.78rem; font-weight: 400; color: var(--text-dim); }

.paste-band + .paste-band { margin-top: 0.9rem; }
.paste-band-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.paste-names {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 2;
  color: var(--text);
  word-spacing: 0.15em;
}

.paste-hint { margin-top: 1rem; font-size: 0.8rem; color: var(--text-dim); }
