/* Language Switcher Styles */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 15px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 3.5px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-family: inherit;
}

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

.lang-btn.active {
  background: #dab760;
  border-color: #dab760;
  color: #fff;
}

/* Adjust topbar to fit lang switcher */
.topbar .col.col-sm-4:last-child .text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Responsive alignment for mobile devices */
@media (max-width: 767px) {
  .topbar .col.col-sm-4:last-child .text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
}

