.aim-menu-toggle {
  position: relative;
  background: none;
  color: #000;
  font-size: 48px;
  padding: 1px;
  z-index: 100001 !important;
  cursor: pointer;
  border: none;
}

.aim-menu-overlay {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 100000;
  display: none;
}

.aim-panel {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 450px;
  min-width: 250px;
  height: 100%;
  background: #fff;
  z-index: 100002;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
}

.aim-panel.active {
  display: flex;
}

.aim-panel h2 {
  font-size: 16px;
  text-transform: uppercase;
  padding: 20px;
  margin: 0;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.aim-panel h2 .aim-back {
  margin-right: 10px;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.aim-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aim-panel li {
  border-bottom: 1px solid #eee;
}

.aim-panel a, 
.aim-panel .submenu-open {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
}

.aim-panel .submenu-open {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu-arrow {
  font-size: 14px;
}

.aim-panel li.active a {
  background-color: #2e2e2e;
  color: #fff;
}

.aim-panel .submenu-open > * {
  pointer-events: none;
}


/* Prevent clicks on menu content from closing the menu */
.aim-panel * {
  pointer-events: auto;
}

/* Style adjustments for better click targets */
.aim-panel a, 
.aim-panel .submenu-open {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
}

.aim-panel a:hover,
.aim-panel .submenu-open:hover {
  background-color: #f5f5f5;
}

.submenu-arrow {
  margin-left: 10px;
  font-size: 18px;
}