.wpg-language-switcher {
position: fixed;
bottom: 20px;
left: 20px;
z-index: 9999;
cursor: pointer;
width: 160px;
}
.wpg-flag-container {
background-color: #1c1c1c;
border-radius: 8px;
padding: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: flex-start;
color: #fff;
}
.wpg-flag-container a {
color:#fff !important;
text-decoration: none;
display: flex;
align-items: center;
}
.wpg-flag-container img {
margin-right: 8px;
}
.wpg-language-list {
display: none;
position: absolute;
bottom: 50px;
right: 0;
background-color: #1c1c1c;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
list-style: none;
padding: 0;
margin: 0;
width: 160px;
}
.wpg-language-list li {
padding: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wpg-language-list li:last-child {
border-bottom: none;
}
.wpg-language-list li a {
text-decoration: none;
color: white;
display: flex;
align-items: center;
}
.wpg-language-list li img {
margin-right: 8px;
}
.wpg-language-switcher:hover .wpg-language-list {
display: block;
}
.wpg-language-list li:hover {
background-color: #333;
}