.conv-align-layout { display: flex; flex-direction: column; gap: 20px; }

.conv-align-toolbar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	background: #f8fafc;
	padding: 15px;
	border-radius: var(--conv-radius);
	border: 1px solid var(--conv-border);
}

.conv-align-btn {
	background: #fff;
	border: 2px solid var(--conv-border);
	padding: 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--conv-transition);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	font-size: 0.6rem;
	font-weight: 800;
	color: var(--conv-muted);
	text-transform: uppercase;
}

.conv-align-btn.active {
	background: var(--conv-primary);
	border-color: var(--conv-primary);
	color: #fff;
}

.conv-paper-canvas {
	background: #fff;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	padding: 30px;
	min-height: 200px;
	font-family: 'Inter', sans-serif;
	white-space: pre-wrap;
	outline: none;
}

/* Classes de Alinhamento Visual */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Estilo do Painel de Código */
.conv-code-panel {
	background: var(--conv-dark);
	border-radius: var(--conv-radius);
	padding: 20px;
	margin-top: 10px;
}

.conv-code-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.conv-code-label {
	font-size: 0.65rem;
	font-weight: 800;
	color: #94a3b8;
	letter-spacing: 1px;
}

.conv-code-block {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.85rem;
	color: #38bdf8; /* Azul claro estilo VS Code */
	background: #0f172a;
	padding: 15px;
	border-radius: 8px;
	word-break: break-all;
	margin: 5px 0;
	border: 1px solid #334155;
}

.code-tag { color: #f472b6; } /* Rosa para tags */
.code-attr { color: #fbbf24; } /* Amarelo para atributos */
.code-val { color: #34d399; } /* Verde para valores */