.rd-navbar-main-element {
  display: flex;
  align-items: center;
}

.rd-navbar-nav-wrap {
  display: flex;
  align-items: center;
}

.lang-switcher {
  display: inline-block;
  position: relative;
  margin-left: 15px;
  vertical-align: middle;
}

.rd-navbar-static .lang-switcher {
  line-height: 44px;
}

.lang-switcher-title {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-switcher-title::after {
  content: "▼";
  font-size: 8px;
  margin-left: 5px;
}

.lang-switcher-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  margin-top: 5px;
}

.lang-switcher-dropdown.show {
  display: block;
}

.lang-switcher-btn {
  display: block;
  width: 100%;
  padding: 8px 15px;
  text-align: left;
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-switcher-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.lang-switcher-btn.active {
  background-color: rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

@media (max-width: 991px) {
  .lang-switcher {
    position: absolute;
    right: 70px;
    top: 13px;
    margin-left: 0;
  }
  
  .lang-switcher-title {
    padding: 3px 8px;
    font-size: 12px;
  }
} 