/* function-calling-schema-builder — style.css (RT-AI-026). Tokens only. */
#fcs { display: flex; flex-direction: column; gap: 1rem; }
.fcs-field { display: flex; flex-direction: column; gap: .35rem; }
.fcs-label { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.fcs-hint { font-size: .72rem; color: var(--rt-ink-mute, #6b6760); margin: 0; }
.fcs-input {
  width: 100%; padding: .5rem .65rem; font-size: 16px; line-height: 1.5;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 8px;
  background: var(--rt-card, #fff); color: var(--rt-ink, #14213d); font-family: inherit;
}
textarea.fcs-input { min-height: 52px; resize: vertical; }
.fcs-input:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.fcs-select { cursor: pointer; }

.fcs-rows { display: flex; flex-direction: column; gap: .75rem; }
.fcs-row {
  display: flex; flex-direction: column; gap: .4rem; padding: .65rem;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 10px; background: var(--rt-bg, #f7f6f3);
}
.fcs-row-grid { display: grid; grid-template-columns: 1fr auto; gap: .5rem; align-items: center; }
.fcs-row-foot { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.fcs-check { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); cursor: pointer; }
.fcs-check input { width: 16px; height: 16px; accent-color: var(--rt-accent, #e8622a); }
.fcs-check input:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.fcs-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;
}
.fcs-rm:hover { border-color: var(--rt-accent, #e8622a); color: var(--rt-accent, #e8622a); }
.fcs-rm:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.fcs-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;
}
.fcs-add:hover { border-color: var(--rt-accent, #e8622a); color: var(--rt-accent, #e8622a); }
.fcs-add:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }

.fcs-out-head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.fcs-out-title { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.fcs-out-actions { display: flex; gap: .5rem; }
.fcs-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;
}
.fcs-btn--primary { background: var(--rt-accent, #e8622a); color: #fff; border-color: var(--rt-accent, #e8622a); }
.fcs-btn:hover { filter: brightness(1.03); }
.fcs-btn:disabled { opacity: .5; cursor: not-allowed; }
.fcs-btn:focus-visible { outline: 2px solid var(--rt-ink, #14213d); outline-offset: 2px; }
.fcs-output {
  width: 100%; min-height: 240px; 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);
}
.fcs-output:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.fcs-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
