/* OpenRouter Translate Frontend Styles */

.ort-language-switcher {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 10px;
}

.ort-languages {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.ort-lang-link {
	display: inline-block;
	padding: 6px 12px;
	background: #f5f5f5;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.ort-lang-link:hover {
	background: #e8e8e8;
	border-color: #999;
}

.ort-lang-link.active {
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

@media (max-width: 768px) {
	.ort-language-switcher {
		bottom: 10px;
		right: 10px;
		padding: 8px;
	}

	.ort-lang-link {
		padding: 5px 10px;
		font-size: 11px;
	}
}
