.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0 8px;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
}

.username-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.username-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f9fafb;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}

.username-chip button {
  border: none;
  background: #e6fffb;
  color: #0f766e;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
}

.results-note {
  margin-top: 16px;
  color: #4b5563;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .results-note {
    font-size: 0.9rem;
  }
}
