.language-selector {
  position: relative;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
}

.language-display {
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  text-align: center;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  z-index: 1000;
  margin-top: 4px;
  overflow: hidden;
  white-space: nowrap;
}

.language-option {
  padding: 8px 12px;
  transition: background-color 0.2s;
  text-align: center;
}

.language-option:hover {
  background-color: #f0f0f0;
}

.language-option.active {
  background-color: #e6f7ff;
  color: #1890ff;
}
