/* ==========================================================================
   Translate — Tool-specific styles
   Shared Benchling-style framework: tools/common/tbb-sequence-tools.css
   ========================================================================== */

/* ── DNA input textarea ───────────────────────────────────────────────────── */
.tbb-translate .tbb-translate-input {
	min-height: 140px;
	font-family: var(--tbb-seq-font-mono);
	font-size:   12px;
}

/* ── Options row ─────────────────────────────────────────────────────────── */
.tbb-translate-options {
	display:   flex;
	flex-wrap: wrap;
	gap:       12px 24px;
	margin:    0 0 4px;
}

.tbb-translate-option {
	display:     flex;
	align-items: center;
	gap:         8px;
	font-size:   13px;
	color:       var(--tbb-seq-text);
}

.tbb-translate-option label {
	font-weight: 500;
	white-space: nowrap;
}

.tbb-translate-option select {
	padding:       4px 8px;
	border:        1px solid var(--tbb-seq-border);
	border-radius: 4px;
	background:    var(--tbb-seq-bg);
	color:         var(--tbb-seq-text);
	font-size:     13px;
	cursor:        pointer;
}

.tbb-translate-option select:focus {
	outline:      2px solid var(--tbb-seq-accent);
	outline-offset: 1px;
}

/* ── Output pre ──────────────────────────────────────────────────────────── */
.tbb-translate-output-pre {
	font-size: 12px;
}

/* ── Wider output on large screens ──────────────────────────────────────── */
@media ( min-width: 900px ) {
	.tbb-translate .tbb-seq-output-pre {
		max-height: 560px;
	}
}
