/* Language Switcher Styles */
.dropdown {
  height: 100% !important;
  margin-inline: 10px;
  display: flex;
  align-items: center;
}

.btn-lang {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 10px;
  padding: 5px 12px;
  transition: all 0.3s ease;
}

.btn-lang:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.dropdown-menu {
  min-width: 120px;
  background: #2a2a2a;
  border: none;
}

.dropdown-item {
  color: #fff;
  padding: 8px 15px;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-option[data-lang="ar"] {
  direction: rtl;
  text-align: right;
}

/* Adjust the icon spacing */
.btn-lang i {
  margin-right: 5px;
}


