/* eepss-platform Language Switch Button */
#eepss-lang-switch {
  position: fixed;
  bottom: 70px;
  right: 16px;
  z-index: 99999;
}

#eepss-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d1d5db;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  user-select: none;
  line-height: 1.4;
}

#eepss-lang-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.2);
}

#eepss-lang-btn:active {
  transform: scale(0.95);
}

#eepss-lang-btn .eepss-lang-icon {
  font-size: 14px;
  line-height: 1;
}

/* If your plugin has a light theme, add this class to the switch container */
#eepss-lang-switch.eepss-light #eepss-lang-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #374151;
}
#eepss-lang-switch.eepss-light #eepss-lang-btn:hover {
  background: rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.18);
}