.language-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .selected-language {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  .dropdown-arrow {
    margin-left: 5px;
  }
  
  .language-options {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    z-index: 1000;
    list-style: none;
    padding: 5px 0;
    width: 100%;
  }
  
  .language-options li {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .language-options li:hover {
    background: #eee;
  }