/* prompt.css — the reusable light-background prompt_paste widget (.dpp). */
.dpp { margin-top: 16px; max-width: 560px; }
.dpp-label {
  display: flex; align-items: center; gap: 5px;
  margin: 0 0 7px; font: 400 12px var(--mono); color: var(--muted);
}
.dpp-label-icon { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dpp-box {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px;
}
.dpp-text {
  flex: 1; min-width: 0; overflow-wrap: anywhere;
  font: 400 12px var(--mono); color: var(--fg); line-height: 1.6;
}
.dpp-text b { font-weight: 500; color: var(--accent); }
.dpp-copy {
  flex: none; width: 4.75rem; margin: 0; padding: .35rem .65rem; border-radius: 7px;
  box-sizing: border-box; text-align: center;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); font-size: 12px; font-weight: 600;
}
.dpp-copy:hover, .dpp-copy.dpp-ok {
  background: transparent; border-color: var(--accent); color: var(--accent);
}
