/* Fix for mobile menu in Navbar */
.mobile-menu-open {
  height: 100vh;
  overflow: hidden;
}

/* Mobile menu button */
.mobile-menu-toggle {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

#mobile-menu-button {
  z-index: 60;
}

.mobile-menu-toggle svg,
.mobile-menu-toggle path {
  pointer-events: none;
}

/* Mobile menu container */
.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; /* Height of the navbar */
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 64px);
  z-index: 50;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow-y: auto;
}

.navbar-mobile-menu.block {
  display: block;
}

/* Ensure the navbar has the correct position */
nav.navbar-container {
  position: relative;
  z-index: 40;
  width: 100%;
}

/* Prevent clicks on hidden elements */
.navbar-mobile-menu.hidden {
  pointer-events: none;
}