<style>
  /* Make sure the hamburger icon is positioned correctly on mobile */
  @media (max-width: 768px) {
    #mobileToggle {
      position: fixed;
      top: 20px; /* Adjust the distance from the top */
      right: 20px; /* Adjust the distance from the right */
      z-index: 1000; /* Ensure it's above other content */
    }
  }
</style>