/* WP Care llms.txt generator */
.wpc-llms-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 12px;
}
.wpc-llms-toolbar button {
  appearance: none;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  cursor: pointer;
}
.wpc-llms-toolbar .primary {
  background: #4F46E5;
  color: #fff;
}
.wpc-llms-toolbar .secondary {
  background: #fff;
  color: #14173F;
  box-shadow: inset 0 0 0 1px #d7dbe7;
}
.wpc-llms-toolbar button:hover,
.wpc-llms-toolbar button:focus-visible {
  filter: brightness(1.05);
}
.wpc-llms-code {
  margin: 0 0 16px;
  padding: 16px 18px;
  max-height: 420px;
  overflow: auto;
  background: #14173F;
  color: #e8eaf6;
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.wpc-llms-existing {
  margin: 0 0 18px;
  padding: 10px 14px;
  background: #f8f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
}
.wpc-llms-existing summary {
  cursor: pointer;
  font-weight: 700;
  color: #14173F;
}
.wpc-llms-existing pre {
  margin: 10px 0 0;
  max-height: 240px;
  overflow: auto;
  white-space: pre-wrap;
  font-size: 12px;
  line-height: 1.45;
  color: #374151;
}
.wpc-llms-note {
  margin: 0 0 16px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
}
