


.globe-icon {
  font-size: 30px;
  margin-top: 13px;
  cursor: pointer;
  transition: transform 0.2s;
}

.globe-icon:hover {
  transform: scale(1.1);
}

.language-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.language-popup {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 300px;
}

.language-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.language-options button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  padding: 10px;
}

.language-options button:hover {
  transform: scale(1.1);
}

.flag-icon {
  width: 50px;
  height: 35px;
  border-radius: 5px;
}

.language-options span {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
