/*================================
    Navbar search dropdown list
==================================*/

  .lang-icon-white {
    color: white;
  }  

  .float-right {
    float: right;
  }

  /* Supprime le style par défaut du select */
  .my-select {
    appearance: none;
    -moz-appearance: none; /* Pour Firefox */
    -webkit-appearance: none; /* Pour les navigateurs basés sur WebKit comme Chrome et Safari */
  }

  .my-select {
    transition: box-shadow 0.3s ease-in-out;
    background : #2d2f31; 
    color : white;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .my-select:hover {
    transform: translateX(-2px);
    transition: transform 0.3s ease-in-out; 
  }

  /* Préfixes spécifiques aux navigateurs */
  .my-select {
    -webkit-transition: box-shadow 0.3s ease-in-out; /* Préfixe pour WebKit (Chrome, Safari) */
    -moz-transition: box-shadow 0.3s ease-in-out; /* Préfixe pour Firefox */
  }

  .my-select:hover {
    -webkit-transform: translateX(-2px); /* Préfixe pour WebKit (Chrome, Safari) */
    -moz-transform: translateX(-2px); /* Préfixe pour Firefox */
    -ms-transform: translateX(-2px); /* Préfixe pour Internet Explorer */
  }
    