.language-selector {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* Light background */
    border: 1px solid #e5e5e5; /* Gray border */
    border-radius: 5px;
    padding: 5px 10px;
}

.language-selector .icon-language {
    fill: #333333; /* Dark gray icon */
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

#languageSelector {
    padding: 8px 30px 8px 12px; /* Increase right padding to prevent overlap of arrow and text */
    background-color: #ffffff; /* Background color */
    color: #333333; /* Text color */
    border: none;
    cursor: pointer;
    -webkit-appearance: none; /* Remove default styling */
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333333" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5.516 7.548c.436-.446 1.043-.481 1.576 0l2.908 2.681 2.908-2.681c.533-.481 1.141-.446 1.576 0 .436.445.408 1.197 0 1.615l-4.241 3.896c-.41.375-1.141.375-1.551 0l-4.241-3.896c-.408-.418-.436-1.17 0-1.615z"/></svg>'); /* Custom dropdown arrow, gray */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}