/* Dual-panel converter - FileInfo.cn (extends json-formatter.css) */
.converter-panels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}

.converter-panel {
	min-width: 0;
}

.converter-panel-label {
	font-size: 14px;
	font-weight: 600;
	color: #1565c0;
	margin-bottom: 6px;
	padding-left: 2px;
}

.converter-panel .editor-wrap .CodeMirror {
	height: 400px;
}

.tool-options {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	align-items: center;
	margin-bottom: 12px;
	font-size: 14px;
	color: #424242;
}

.tool-options label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.tool-options select,
.tool-options input[type="text"] {
	padding: 4px 8px;
	border: 1px solid #bdbdbd;
	border-radius: 4px;
	font-size: 14px;
}

.jwt-sections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.jwt-section {
	min-width: 0;
}

.jwt-section h3 {
	font-size: 14px;
	color: #1565c0;
	margin: 0 0 6px;
	font-weight: 600;
}

.jwt-section .editor-wrap .CodeMirror {
	height: 160px;
}

.jwt-secret-row {
	margin-bottom: 12px;
}

.jwt-secret-row label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #424242;
	margin-bottom: 4px;
}

.jwt-secret-row input {
	width: 100%;
	max-width: 480px;
	padding: 8px 12px;
	border: 2px solid #1976d2;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.converter-panels,
	.jwt-sections {
		grid-template-columns: 1fr;
	}

	.converter-panel .editor-wrap .CodeMirror {
		height: 280px;
	}
}
