/* Language Selector Styles */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.language-switcher select {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 5px center;
  padding-right: 30px;
}

.language-switcher select:hover {
  border-color: #999;
  background-color: #eaeaea;
}

/* Mobile styles */
@media (max-width: 768px) {
  .language-switcher {
    margin: 10px 0;
  }

  .language-switcher select {
    width: 100%;
    padding: 8px 30px 8px 10px;
  }
}
