.language-dropdown {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    cursor: pointer;
}

.language-options {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 100%; /* This makes the menu open upwards */
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.language-options li {
    padding: 8px;
    cursor: pointer;
}

.language-options li:hover {
    background-color: #f0f0f0;
}

.language-options img {
    width: 20px;
    margin-right: 8px;
}

.selected-language {
    padding: 8px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display:flex;
    align-items:center;
    gap:10px;
}

.selected-language img {
    width:40px;
}

#nawalGrid {
    margin-right: 30px;
}

.nawal-cell {
    display: inline-block;
    margin: 10px;
    text-align: center;
}
.nawal-cell img {
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    display: block;
    margin: 0 auto 5px; /* Centers the image and adds space below */
}
        
#nawalGrid > div > div {
    text-align:center;
    padding-left:28px;
}

.main-container {
    gap:20px;
}

@media only screen and (max-width: 840px) {
 .main-container{
     flex-direction:column;
     width:100%;
 }
 .left-content {
 max-width:100% !important;
  }
  .wrap {
      justify-content:flex-start !important;
  }
  .main-container {
      gap:0px !important;
      width:100% !important;
  }
  .right-content {
      width:80% !important;
  }
}

@media only screen and (max-width: 1145px) {
  .main-container {
      width:100% !important;
  }
  #nawalGrid {
      margin-right:0px;
  }
}