/* Dropdown Button */
.dropbtn {
    background-color: #141414;
    color: #0EA608;
    padding: 10px;
    border: solid 1px #1C1C1C;
    border-radius: 10px;
    text-align: left;
    font-size: 50px;
    text-align: left;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    padding-top: 10px;
    display: flex; /* Utilisation de flex pour aligner le bouton à gauche */
    justify-content: flex-start; /* Alignement à gauche */
    align-items: center; /* Aligner verticalement au centre, si nécessaire */
}
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #141414;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-left:10%;
    border: solid 0px #0EA608;
    border-radius: 10px;
    text-shadow: none;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: #0EA608;
    top: 100%; /* Position the dropdown content below the button */
    left: 0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #0EA608;
                             border: solid 0px #0EA608;
                             border-radius: 10px;
                            }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: flex;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #0EA608;}
  .dropdown:hover .dropbtn {color: #141414;}