/* Style the dropdown button */
.dropbtn {
    margin-left: 25px;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

/* Position the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style the dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    min-width: 120px;
    text-align: center;
    margin-top: -10px;
    margin-left: 65px;
   
}


/* Style the links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: -15px 20px;
    text-decoration: none;
    display: block;
    font-size: 40px;
}

/* Increase the font size for the flag emojis */
.dropdown-content a img {
    height: 74px;
    width: 106px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    left: 60%;
    transform: translateX(-50%);
}

.dropdown-content a {
    
    margin: 0;
    padding: 0;
}

.dropdown-content a + a {
    margin-left: 4px; /* adjust this value as needed */
}

/* Style the dropdown button */
.dropbtn {
  background-color:orange;
  margin-left: 25px;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

/* Position the dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the dropdown content */


/* Style the links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
}


.dropdown:hover .dropdown-content {
    display: block !important;
    left: 1%;
    transform: translateX(-50%);
}
/* Style the dropdown button */
.dropdown > a {
    display: inline-block;
    margin-left: 25px;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
  }
  
  /* Style the dropdown menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
    min-width: 100%;
    text-align: center;
    background-color: white;
    padding-top: 10px;
    border-radius: 8px;
  }
  
  /* Style the links inside the dropdown menu */
  .dropdown-menu a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
   /* Language CSS */
   .language {
    display: inline-block;
    position: relative;
  }
  
  .language-btn {
    background-color: #4CAF50;
    margin-left: 25px;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
  }
  
  .language-content {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 25px;
    min-width: 5px;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }
  
  .language-link {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
    font-size: 16px;
  }
  
  .language-link:hover {
    background-color: #f1f1f1;
  }
  
  .language:hover .language-content {
    display: block;
  }