/* kling-prompt-builder — style.css (RT-AI-062). Tokens only. */
#klp { display: flex; flex-direction: column; gap: 1rem; }
.klp-note {
  font-size: .82rem; line-height: 1.55; color: var(--rt-ink-soft, #2A3340);
  background: var(--rt-bg, #f7f6f3); border: 1px solid var(--rt-border, #d8dce2);
  border-radius: 8px; padding: .55rem .7rem; margin: 0;
}
.klp-fields { display: flex; flex-direction: column; gap: .75rem; }
.klp-field { display: flex; flex-direction: column; gap: .35rem; }
.klp-label { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.klp-input {
  width: 100%; min-height: 52px; padding: .5rem .65rem; font-size: 16px; line-height: 1.5;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 8px; resize: vertical;
  background: var(--rt-card, #fff); color: var(--rt-ink, #14213d); font-family: inherit;
}
.klp-input:focus-visible { outline: 2px solid var(--rt-accent, #8b5cf6); outline-offset: 2px; }
.klp-out-head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.klp-out-title { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.klp-copy {
  min-height: 40px; padding: .4rem .9rem; border: 1px solid var(--rt-border, #d8dce2);
  border-radius: 8px; background: var(--rt-accent, #8b5cf6); color: #fff; font-weight: 600; cursor: pointer;
}
.klp-copy:hover { filter: brightness(1.05); }
.klp-copy:disabled { opacity: .5; cursor: not-allowed; }
.klp-copy:focus-visible { outline: 2px solid var(--rt-ink, #14213d); outline-offset: 2px; }
.klp-output {
  width: 100%; min-height: 220px; padding: .75rem; font-size: .9rem; line-height: 1.6;
  font-family: var(--rt-mono, ui-monospace, 'SF Mono', Menlo, Consolas, monospace);
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 10px; resize: vertical;
  background: var(--rt-bg, #f7f6f3); color: var(--rt-ink, #14213d);
}
.klp-output:focus-visible { outline: 2px solid var(--rt-accent, #8b5cf6); outline-offset: 2px; }
.klp-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
