/* ========== LIST COMPARISON TOOL STYLES ========== */

/* Lists layout */
#listTool .lists {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

#listTool .list-section {
  flex: 1;
  min-width: 260px;
}

#listTool .list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

/* Textareas for A/B */
#listA,
#listB {
  height: 160px;
  resize: none;
}

/* Results layout */
#listTool .results {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
#listTool .result-section {
  flex: 1;
  min-width: 260px;
}

#listTool .count {
  font-size: 13px;
  margin-bottom: 6px;
}

/* Results output box */
#listTool .output {
  min-height: 160px;
  max-height: 260px;
  overflow-y: auto;
}

/* Checkbox row next to buttons (inline styling mostly in HTML) */
#listTool .buttons label {
  font-size: 14px;
}

/* Ensure tool headings align with suite style */
#listTool h2 {
  margin-top: 0;
}