/* Inline language icons */
.wss-wpml-icons {
  list-style: none;
  margin: 0 10px;
  padding: 0;
  display: flex;
  gap: 10px;
}

.wss-wpml-icons li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.wss-wpml-icons li.active a {
  background: #0073aa;
  color: #fff;
}

.wss-wpml-icons li a:hover {
  background: #ccc;
}