/* Styling for the select dropdown to match the image */
.goog-te-combo {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    padding: 8px 30px 8px 12px;
    width: 100%;
    max-width: 180px;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .goog-te-gadget{
    margin-left: 24px !important;
  }
  
  /* Styling for hover state */
  .goog-te-combo:hover {
    border-color: #c0c0c0;
  }
  
  /* Styling for focus state */
  .goog-te-combo:focus {
    border-color: #a8a8a8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  }
  
  /* Styling for dropdown items (requires browser support) */
  .goog-te-combo option {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .VIpgJd-ZVi9od-l4eHX-hSRGPd{
   visibility: hidden;
  } 
  .skiptranslate span::before{
  content: 'Amundiv';
  }
  /* Selected option */
  .goog-te-combo option:checked {
    background-color: #f5f5f5;
    font-weight: 500;
  }
  #googleElement{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999999999999;
  }
  
  /* Add a gap between category-like options */
  .goog-te-combo option[value="ab"],
  .goog-te-combo option[value="zh-CN"],
  .goog-te-combo option[value="en"],
  .goog-te-combo option[value="fr"],
  .goog-te-combo option[value="de"],
  .goog-te-combo option[value="ja"],
  .goog-te-combo option[value="ru"] {
    margin-top: 5px;
    font-weight: 500;
  }