.notranslate {
  translate: no;
}

html, body {
  position: static !important;
  margin-top: 0px;
}



/* Fullscreen Overlay */
.language-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.language-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#languageSearch {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-right: 15px;
  box-sizing: border-box !important;
}

.close-icon {
  font-size: 40px;
  cursor: pointer;
  color: #888;
}

.language-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr; /* Mobile: 1 column */
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-item:hover {
  background-color: #FAFAFA;
}

.lang-item img {
  width: 24px !important;
  height: 16px !important;
  border-radius: 2px;
}
.lang-item span{
  font-size: 12px;
}

@media (min-width: 480px) {
  .language-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .language-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 850px) {
  #languageSearch {
    width: 300px;
  }
}
/* Google Translate Hacks */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body > .skiptranslate {
  display: none !important;
}
.goog-tooltip, .goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}