/* llms-txt-generator — style.css (RT-AI-027). Tokens only. */
#llt { display: flex; flex-direction: column; gap: 1rem; }
.llt-field { display: flex; flex-direction: column; gap: .35rem; }
.llt-label { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.llt-hint { font-size: .72rem; color: var(--rt-ink-mute, #6b6760); margin: 0; }
.llt-input {
  width: 100%; 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;
}
textarea.llt-input { min-height: 52px; }
.llt-input:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.llt-sections { display: flex; flex-direction: column; gap: .75rem; }
.llt-section {
  display: flex; flex-direction: column; gap: .4rem; padding: .65rem;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 10px; background: var(--rt-bg, #f7f6f3);
}
.llt-section-head { display: flex; gap: .5rem; align-items: center; }
.llt-section-head .llt-input { flex: 1; }
.llt-links { font-family: var(--rt-mono, ui-monospace, 'SF Mono', Menlo, Consolas, monospace); font-size: .85rem; }
.llt-rm {
  flex: 0 0 auto; width: 34px; height: 34px; border: 1px solid var(--rt-border, #d8dce2);
  border-radius: 8px; background: var(--rt-card, #fff); color: var(--rt-ink-soft, #2A3340);
  cursor: pointer; font-size: .9rem; line-height: 1;
}
.llt-rm:hover { border-color: var(--rt-accent, #e8622a); color: var(--rt-accent, #e8622a); }
.llt-rm:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.llt-add {
  align-self: flex-start; min-height: 38px; padding: .4rem .85rem; border: 1px dashed var(--rt-border, #d8dce2);
  border-radius: 8px; background: var(--rt-card, #fff); color: var(--rt-ink-soft, #2A3340);
  font-weight: 600; cursor: pointer;
}
.llt-add:hover { border-color: var(--rt-accent, #e8622a); color: var(--rt-accent, #e8622a); }
.llt-add:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.llt-out-head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.llt-out-title { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.llt-out-actions { display: flex; gap: .5rem; }
.llt-btn {
  min-height: 40px; padding: .4rem .9rem; border: 1px solid var(--rt-border, #d8dce2);
  border-radius: 8px; background: var(--rt-card, #fff); color: var(--rt-ink, #14213d); font-weight: 600; cursor: pointer;
}
.llt-btn--primary { background: var(--rt-accent, #e8622a); color: #fff; border-color: var(--rt-accent, #e8622a); }
.llt-btn:hover { filter: brightness(1.03); }
.llt-btn:disabled { opacity: .5; cursor: not-allowed; }
.llt-btn:focus-visible { outline: 2px solid var(--rt-ink, #14213d); outline-offset: 2px; }
.llt-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);
}
.llt-output:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.llt-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
