.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -220px; /* Initially hide the sidebar */
  width: 220px;
  height: 100%;
  background-color: #ffff;
  overflow-y: auto;
  transition: right 0.3s;
  z-index: 1000;
}
.hamburger-button {
  cursor: pointer;
}
@media (min-width: 768px) {
  .hamburger-button {
    display: none;
  }
}
@media (min-width: 768px) {
  .mobile-sidebar {
    display: none;
  }
}
.mobile-sidebar.show {
  right: 0; /* Show the sidebar */
}
