.conv-url-container { display: flex; flex-direction: column; gap: 20px; }

/* Estilo do Visor de Segurança */
.conv-visor {
	background: #1e293b;
	border-radius: var(--conv-radius);
	padding: 10px;
	margin-top: 20px;
	display: none;
	border: 4px solid var(--conv-border);
}

.conv-visor-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #334155;
	margin-bottom: 10px;
}

.conv-visor-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 5px #ef4444; }

.conv-screen {
	width: 100%;
	aspect-ratio: 16/9;
	background: #0f172a;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.conv-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.conv-screen .loading-text {
	color: var(--conv-primary);
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.conv-url-display {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	color: #94a3b8;
	word-break: break-all;
	margin-top: 8px;
}