/* SET LANGUAGE */

.language-selector {
  display: flex;
  top: 50%; /* Centers vertically */
  right: 20px; /* Adjusts distance from the right */
  background-color: rgb(221, 221, 221);
  gap: 5px;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.language-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.language-btn img {
  display: block;
  border-radius: 4px;
  transition: transform 0.2s ease-in-out;
}

.language-btn:hover img {
  transform: scale(1.1);
}

  
  .content {
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 16px;
  }
  
  p {
    font-size: 1.1em;
    line-height: 1.5;
  }
  
  [data-mn], [data-jp] {
    display: none; /* Hide Mongolian and Japanese by default */
  }
  
  [data-en] {
    display: block; /* Show English by default */
  }
 
  

  @media (max-width: 1100px) {
    .language-selector {
      position: fixed; /* Keeps it in place when scrolling */
      top: 50%; /* Centers vertically */
      right: 20px; /* Adjusts distance from the right */
      transform: translateY(+240%); /* Perfect vertical centering */
      background-color: rgb(221, 221, 221);
      z-index: 500; /* Correct z-index usage */
      display: flex;
      flex-direction: column; /* Stack buttons vertically */
      gap: 5px;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      opacity: 0.8;
    }
    .language-btn {
      height: 15; width: 20;
    }
  }