.int-transcript { max-width: 700px; margin: 0 auto; padding: 24px 16px; }
.tx-title { margin: 16px 0 4px; display: flex; align-items: center; gap: 8px; }
.tx-hint { color: var(--text-muted); font-size: 13px; margin: 0 0 12px; }
.tx-area {
  width: 100%; min-height: 320px; padding: 14px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--glass-bg, rgba(255,255,255,0.06));
  color: var(--text); font-size: 14px; line-height: 1.6;
  resize: vertical; font-family: inherit;
}
.tx-area:focus { outline: none; border-color: var(--accent); }
.tx-area::placeholder { color: var(--text-muted); opacity: 0.5; }
.tx-meta {
  display: flex; justify-content: flex-end;
  padding: 6px 0; font-size: 12px; color: var(--text-muted);
}
.tx-actions {
  display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px;
}
/* Mode toggle in setup form */
.int-mode-toggle {
  display: flex; gap: 0; margin: 12px 0 16px;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.int-mode-btn {
  flex: 1; padding: 10px 12px; border: none; cursor: pointer;
  background: transparent; color: var(--text-muted);
  font-size: 13px; font-weight: 500; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.int-mode-btn.active {
  background: var(--accent); color: #fff;
}
.int-mode-btn:not(.active):hover {
  background: var(--glass-bg, rgba(255,255,255,0.06));
}
.tx-readonly-meta { font-size: 12px; color: var(--text-muted); margin: 8px 0 12px; }
.tx-readonly-body { overflow-y: auto; flex: 1; padding: 0 2px 24px; }
.tx-line { margin: 2px 0; font-size: 13px; line-height: 1.6; }
.tx-speaker { color: var(--accent); margin-right: 4px; }

