.mvp-author-info-name {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
}

.keo-lang-translate-wrap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 12px;
}

.keo-lang-translate-label {
	font-size: 12px;
	color: #888;
	font-weight: 400;
	white-space: nowrap;
}

.keo-lang-select {
	font-size: 12px;
	line-height: 1.4;
	padding: 4px 28px 4px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
	color: #333;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	min-width: 120px;
}

.keo-lang-select:hover {
	border-color: #bbb;
}

.keo-lang-select:focus {
	outline: 2px solid #f5b63d;
	outline-offset: 1px;
	border-color: #f5b63d;
}

.keo-lang-select:disabled {
	opacity: 0.6;
	cursor: wait;
}

.keo-lang-status {
	font-size: 11px;
	color: #888;
	font-style: italic;
}

.keo-lang-status.is-loading::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-left: 4px;
	border: 2px solid #ccc;
	border-top-color: #333;
	border-radius: 50%;
	animation: keo-lang-spin 0.7s linear infinite;
	vertical-align: middle;
}

@keyframes keo-lang-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 600px) {
	.keo-lang-translate-wrap {
		margin-left: 0;
		width: 100%;
		margin-top: 4px;
	}
}
