/* Language Switcher Styling */
#language-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-right: 10px;
}

.lang-btn {
  background-color: var(--base-color);
  border: 4px solid #fff;
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
  font-family: inherit;
  text-transform: uppercase;
  margin: 0;
  border-radius: 0;
}

.lang-btn:first-child {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  border-right: 2px solid #fff;
}

.lang-btn:last-child {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  border-left: 2px solid #fff;
}
.lang-btn:not(.active) {
  background: #587947;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #language-switcher {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}
