/* Custom width for off-canvas */
.custom-offcanvas {
    width: 70%;
  }
  
  /* Ensuring it applies only on screens 768px or smaller */
  @media (max-width: 768px) {
    .custom-offcanvas {
      width: 70% !important; /* Takes 70% of the screen width on mobile */
    }
  }
  