/* Custom text outline color */
.text-outline-color-extra-medium-pink {
  -webkit-text-stroke: 2px #ff1493; /* Hot pink outline */
  color: transparent; /* Only outline visible */
}



.floating-lang {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 9999;
}

.floating-lang button {
  background: none;
  border: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
}

.floating-lang button:hover {
  background: #000;
  color: #fff;
}

.floating-lang .active {
  background: #000;
  color: #fff;
}
