#textInput {
  width: 100%;
  height: 160px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  resize: vertical;
  margin-bottom: 16px;
}

.action-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.result-section {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
}

.result-item {
  font-size: 12px;
  color: #333;
  background: #f7f7f7;
  padding: 6px 10px;
  border-radius: 6px;
  word-break: break-all;
}

.empty-note {
  color: #999;
  font-size: 12px;
}