.conv-swap-container {
	display: flex;
	justify-content: center;
	margin: -10px 0 10px 0;
}
.conv-swap-btn {
	background: var(--conv-secondary);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--conv-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.conv-swap-btn:hover {
	background: var(--conv-accent);
	transform: rotate(180deg);
}