/* Universal Translate Widget Styles */
.hidden{
	display:none;
}
.universal-translate-widget {
	position: relative;
	z-index: 1001;
	font-family: 'Raleway', sans-serif;
}
.translate-button {
	background: #232323;
	color: white;
	border: none;
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
	min-width: 80px;
	justify-content: center;
}
.current-flag {
	width: 20px;
	height: 14px;
	display: inline-block;
	border-radius: 2px;
	object-fit: cover;
}
.translate-button:hover {
	background: #232323;
	box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
	transform: translateY(-1px);
}
.current-lang {
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
}
.language-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	border-radius: 0px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	padding: 8px 0;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.2s ease;
	border: 1px solid #dadce0;
	margin-top: 4px;
	max-height: 300px;
	overflow-y: auto;
}
.language-dropdown.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown-header {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	color: #5f6368;
	border-bottom: 1px solid #e8eaed;
	margin-bottom: 4px;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
}
.language-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	cursor: pointer;
	transition: background-color 0.15s ease;
	font-size: 14px;
	color: #3c4043;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
}
.language-option:hover {
	background: #f1f3f4;
}
.language-option.active {
	background: #e8f0fe;
	color: #1a73e8;
	font-weight: 500;
}
.flag-emoji {
	font-size: 16px;
	width: 20px;
	text-align: center;
}
.flag-image {
	width: 20px;
	height: 14px;
	border-radius: 2px;
	object-fit: cover;
}