.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.item-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mini-border);
}

.item-row:last-child {
  border-bottom: none;
}

.item-row label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.item-row input[type="checkbox"] {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.item-row span {
  white-space: normal;
  word-break: break-word;
}
