.conv-currency-card {
	background: #fff;
	border: 1px solid var(--conv-border);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}
.conv-currency-card:focus-within {
	border-color: var(--conv-primary);
	box-shadow: 0 0 0 4px rgba(168, 29, 58, 0.1);
}
.conv-currency-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.conv-currency-select {
	border: none;
	background: none;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--conv-primary);
	cursor: pointer;
	outline: none;
	width: 45%;
}
.conv-currency-input {
	border: none;
	background: none;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: right;
	width: 50%;
	outline: none;
	color: var(--conv-text);
	font-family: 'JetBrains Mono', monospace;
}
.conv-live-indicator {
	display: inline-flex;
	align-items: center;
	font-size: 0.65rem;
	font-weight: 800;
	color: #16a34a;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.conv-live-dot {
	height: 8px; width: 8px;
	background-color: #16a34a;
	border-radius: 50%;
	display: inline-block;
	margin-right: 6px;
	animation: pulse 2s infinite;
}
.conv-manual-box {
	background: #f8fafc;
	border-radius: 12px;
	padding: 15px;
	margin-top: 15px;
	display: none;
	border: 1px solid #e2e8f0;
}
/* Estilos de erro/alerta */
.status-error { color: #dc2626 !important; }
.dot-error { background-color: #dc2626 !important; animation: none !important; }

optgroup { font-style: normal; font-weight: bold; color: #64748b; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }