.language-selector {
    position: relative;
    display: inline-block;
  }
  
  .globus {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .globus svg {
    width: 24px;
    height: 24px;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 14px 14px rgba(0, 0, 0, 0.1);
    z-index: 15;
    width: 200px;
    top: 33%;
    right: 0;
    border-radius: 10px;
  }
  
  .language-option {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .language-option:hover {
    background-color: #f1f1f1;
  }
  
  .language-option img {
    width: 20px;
    margin-right: 10px;
  }