/* lang-switcher.css */

.lang-btn {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 9999;
  background: #fff;
  transition: transform 0.2s;
}
.lang-btn:hover {
  transform: scale(1.1);
}
.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-dropdown {
  display: none;
  position: fixed;
  bottom: 120px;
  left: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  padding: 10px;
  z-index: 9999;
  min-width: 140px;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  margin: 5px 0;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.lang-dropdown a:hover {
  background: #f1f1f1;
  border-radius: 5px;
  padding: 2px;
}
.lang-dropdown img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

/* Minimize Google Translate top banner instead of hiding */
.VIpgJd-ZVi9od-ORHb-OEVmcd{
  display: none;
}

body {
  top: 0px !important; 
}
