.pfs-language-switcher {
	position: relative;
	display: inline-block;
    width: 100%;
}

.pfs-lang-dropdown {
	position: relative;
	display: inline-block;
    width: 100%;
}

.pfs-lang-current {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	color: #495057;
	font-size: 14px;
	cursor: pointer;
	min-width: 120px;
    width: 100%;
	justify-content: space-between;
	transition: all 0.2s ease;
}

.pfs-lang-current:hover {
	background: #e9ecef;
	border-color: #adb5bd;
}

.pfs-lang-current.active {
	border-color: #007cba;
	background: #fff;
}

.pfs-lang-current-content {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.pfs-lang-arrow {
	transition: transform 0.2s ease;
	font-size: 12px;
}

.pfs-lang-current.active .pfs-lang-arrow {
	transform: rotate(180deg);
}

.pfs-lang-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
	display: none;
}

.pfs-lang-dropdown.active .pfs-lang-dropdown-menu {
	display: block;
}

.pfs-lang-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	color: #495057;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.2s ease;
	border-bottom: 1px solid #f8f9fa;
}

.pfs-lang-item:last-child {
	border-bottom: none;
}

.pfs-lang-item:hover {
	background: #f8f9fa;
	color: #212529;
	text-decoration: none;
}

.pfs-lang-flag {
	font-size: 16px;
	line-height: 1;
}

.pfs-lang-title {
	font-weight: 500;
}
