/* Language Switcher Styles */
.language-switcher {
  display: flex;
  align-items: center;
}

.language-btn {
  padding: 6px 12px;
  margin: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background: #f5f5f5;
}

.language-btn.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

/* Hide language switcher on mobile devices except when it has ismobile class */
@media screen and (max-width: 767px) {
  .language-switcher:not(.ismobile) {
    display: none !important;
  }

  .ismobile {
    margin-top: 10px;
  }
}
