 /* Hide on desktop (min-width: 768px or more) */
  @media screen and (min-width: 768px) {
    .mobileonly {
      display: none;
    }
  }

  /* Show on mobile (less than 768px) */
  @media screen and (max-width: 767px) {
    .mobileonly {
      display: block;
    }

  .a{
     display: none;
  }



  }



     
      /* Toggle button floated right (visually) */
      .menu-toggle {
        display: none;
        background-color: transparent;
        color: white;
      
        border: none;
        font-size: 18px;
        cursor: pointer;
        border-radius: 4px;
       
      }

      /* Vertical nav menu */
      .mobile-nav {
        display: none;
        background-color: gray;
        padding: 10px;
        width: 97.45%;
        margin-left: 5px;
        box-sizing: border-box;
      }

      .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .mobile-nav li {
        margin: 10px 0;
      }

      .mobile-nav a {
        color: white;
        text-decoration: none;
        display: block;
      }

      /* Show on mobile only */
      @media (max-width: 768px) {
        .menu-toggle {
          display: inline-block;
        }

        .mobile-nav.show {
          display: block;
        }
      }




         /* Hide toggle bar on desktop */
    @media screen and (min-width: 769px) {
      .mobileonly {
        display: none;
      }
    }

    /* Show toggle bar only on mobile */
    @media screen and (max-width: 768px) {
      .mobileonly {
        display: block;
      }

      /* Floating rectangular toggle bar fixed top right */
      .mobile-toggle-bar {
        position: fixed;
        top: 100px;
        right: 20px;
        z-index: 9999;
        background-color: transparent; /* Blue */
        padding: 8px 16px;
        border-radius: 8px; /* Rounded corners but NOT circle */
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
      }

      /* Image inside toggle bar */
      .mobile-toggle-bar img.menu-toggle {
        width: 32px;
        height: 32px;
        margin-right: 8px;
      }

      /* Optional: text label next to icon */
      .mobile-toggle-bar span {
        color: black;
        font-weight: bold;
        font-size: 16px;
      }

      /* Mobile menu (hidden by default) */
     

      

    }