.language-switcher-custom {
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 6px 12px;
    cursor: pointer;
    min-width: 140px;
    background: white;
  }
  
  .language-switcher-custom:focus {
    outline: 2px solid #007bff;
  }
  
  .selected-language,
  .language-options li {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .language-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
  }
  
  .language-switcher-custom.active .language-options {
    display: block;
  }
  
  .language-options li {
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .language-options li:hover {
    background-color: #f5f5f5;
  }

  .languaje-flag-selector {
    width: 25px;
    height: 25px;
    font-size: small;
  }