#ovesl-translate-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 15px;
}

#ovesl-translate-toggle {
  width: 50px;
  height: 50px;
  background-color: #0f766e;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.4);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
  outline: none;
}

#ovesl-translate-toggle:hover {
  background-color: #115e59;
  transform: scale(1.1);
}

#ovesl-translate-content {
  width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#ovesl-translate-widget.open #ovesl-translate-content {
  width: 170px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  padding: 0 10px;
  overflow: visible !important;
}

#ovesl-translate-widget.open #ovesl-translate-toggle {
  background-color: #ef4444;
  transform: rotate(90deg);
}

#ovesl-lang-select {
  margin: 0;
  border: none;
  background: transparent;
  color: #0f766e;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  width: 100%;
  outline: none;
  cursor: pointer;
  padding-right: 10px;
}

.goog-te-banner-frame,
.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}
