/* Style for the language switcher button */

.language-switcher-dropdown.hidden {
  display: none;
}

.language-switcher {
  margin-left: 10px;
  position: relative;
  display: inline-block;
  padding: 10px;
  
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

/* Style for the language switcher button label */
.language-switcher-label {
  display: inline-block;
}

/* Style for the language switcher button label */
.language-switcher-label-ar {
  display: inline-block;
}

/* Style for the language switcher dropdown */
.language-switcher-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Style for the language switcher dropdown items */
.language-switcher-dropdown li {
  display: block;
  margin: 0;
}

.language-switcher-dropdown li a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.language-switcher-dropdown li a:hover {
  background-color: #f2f2f2;
}

/* Style for the language switcher button when hovered */
.language-switcher:hover .language-switcher-dropdown {
  display: block;
}

.language-switcher:hover {
  background-color: #ccc;
  color: #fff;
}


.language-switcher-label:after {
  content: "\25BC";
  margin-left: 5px;
  font-size: 12px;
  color: #14428F;
}


.language-switcher-label-ar:after {
  content: "\25BC";
  margin-left: 5px;
  font-size: 12px;
  color: #14428F;
}