.language-picker {
  position: relative;
  margin-left: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.2s;
}

.lang-toggle:hover {
  border-color: #999;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  z-index: 1000;
  overflow: hidden;
}

.lang-dropdown.open {
  display: block;
}

.lang-item {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
  white-space: nowrap;
}

.lang-item:hover {
  background: #f5f5f5;
}

.lang-item.active {
  background: #f0f7ff;
  color: #4183c4;
}

.translation-banner {
  background: #f5eeff;
  border: 1px solid #d4b8ff;
  border-left: 4px solid #9b59b6;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #5b3a7a;
  line-height: 1.5;
}

.translation-banner p {
  margin: 0;
}

.translation-banner a {
  color: #7b3fa0;
  font-weight: 600;
  text-decoration: underline;
}
