.language-selector {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  z-index: 999999 !important;
}

.language-selector button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 0;
  margin-top: 3px;
}

/* Üst butonun köşelerini yuvarla sadece üstten */
.language-selector button:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* Alt butonun köşelerini yuvarla sadece alttan */
.language-selector button:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: none; /* üst çizgi olmasın, yapışık dursun */
}

.language-selector button:hover {
  background-color: #f5f5f5;
}

.language-selector img {
  width: 24px;
  height: auto;
  margin-right: 10px;
  border-radius: 2px;
}

.language-selector span.arrow {
  margin-left: auto;
  font-size: 18px;
  color: #333;
}
