/*1.Google Translate CSS*/


/* Flex container styling */
.header-container {
  display: flex;
  align-items: center;
}

/* Translation bar styling */
.translate-topbar {
  background-color: #e6f4c1;
  display: none;
  padding: 0px !important;
  justify-content: end;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .translate-topbar {
    display: flex;
  }
}

/* Google Translate element styling */
#google_translate_element {
  margin-left: 10px;
  margin-right: 10px; /* Optional: spacing between translate and search */
  height: 30px;
  overflow: hidden;
  position: relative;
}

/* Container styling */
.goog-te-combo {
  padding: 4px 8px !important;
  margin: 0 !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1.5px solid rgba(34, 197, 94, 0.45) !important;
  border-radius: 6px !important;
  background-color: white !important;
  appearance: none !important;
  padding-right: 24px !important;
  color: black !important;
  font-weight: 500 !important;
  cursor: pointer !important;
}

/* Custom dropdown arrow */
#google_translate_element::after {
  content: '' !important;
  position: absolute !important;
  right: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 16px !important;
  height: 16px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23908d9d'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'%3E%3C/path%3E%3C/svg%3E") !important;
  pointer-events: none !important;
}


/* Hover state */
.goog-te-combo:hover {
  border-color: rgba(34, 197, 94, 0.6);
}

/* Focus state */
.goog-te-combo:focus {
  outline: none;
  border-color: rgb(34, 197, 94);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
}

/* Optional: Style the options */
.goog-te-combo option {
  padding: 8px;
  font-size: 12px;
}
/* Google Translate widget fixes */
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  left: 0;
  top: 0;
  height: 0 !important;
  width: 102%;
  z-index: 9999970;
  position: fixed;
  border: none;
  overflow: hidden !important;
  visibility: hidden !important;
}

body {
  position: relative !important;
  min-height: 100% !important;
  top: 0 !important;
}
