.language-selector {
   position: fixed;
   bottom: 5px;
   right: 15%;
   z-index: 1;
}

.dropdown {
   position: relative;
   display: inline-block;
}

.dropdown-toggle {
   background-color: #3498db;
   color: white;
   padding: 8px 16px;
   font-size: 16px;
   border: none;
   cursor: pointer;
   border-radius: 5px;
   display: flex;
   align-items: center;
}

.dropdown-toggle img {
   width: 20px;
   height: 20px;
   margin-right: 8px;
   border-radius: 50%;
}

.dropdown-content {
   display: none;
   position: absolute;
   bottom: 100%;
   background-color: #f9f9f9;
   min-width: 160px;
   box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
   z-index: 1;
   border-radius: 5px;
   margin-bottom: 10px;
   /* Add margin to separate from button */
}

.dropdown-content ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.dropdown-content ul li {
   padding: 8px 16px;
   display: flex;
   align-items: center;
}

.dropdown-content ul li label {
   margin-left: 8px;
   cursor: pointer;
   display: flex;
   align-items: center;
}

.dropdown-content ul li:hover {
   background-color: #f1f1f1;
}

.dropdown-content.show {
   display: block;
}

.dropdown-content ul li img {
   width: 20px;
   height: 20px;

}

.dropdown-content ul li input[type="radio"] {
   display: none;
}

.language-selector {
   margin: 10px;
}

#language-dropdown {
   padding: 5px;
   font-size: 16px;
}

div#trp-floater-ls-current-language {
   display: none;
}

/* Target the <a> tag inside the <li> with class 'new_lan' */
.new_lan a {
   text-decoration: none;
   /* Remove underline from links */
   color: black;
   /* Set text color to black */
   font-weight: normal;
   /* Set normal font weight */
   display: inline-block;
   /* Make sure it behaves like a block element */
   transition: font-weight 0.2s ease;
   /* Smooth transition for font weight */
}

/* Hover effect: Make font bold on hover */
.new_lan a:hover {
   font-weight: bold;
   /* Change font weight to bold on hover */
   color: black;
}