.lang-change {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
  }
  .lang-dropdown-menu {
    display: none;
    background-color: #343a40;
    color: white;
    position: absolute;
    bottom: 10px;
    right: 0;
    min-width: 160px;
    list-style-type: none; /* Disable markers (bullets) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .lang-dropdown-menu.show {
    display: block;
  }
  .lang-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: white;
  }
  .lang-dropdown-item img {
    width: 20px;
    height: auto;
    margin-right: 10px;
  }
  .lang-dropdown-item:hover {
    background-color: #495057;
  }