#app-side-menu {
  position: fixed;
  left: 10px;
  top: 96px;
  z-index: 9999;
  pointer-events: auto !important;
}

#app-side-menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  pointer-events: auto !important;
}

#app-side-menu-panel {
  position: absolute;
  left: 0;
  top: 50px;
  width: 170px;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
  padding: 8px;
  display: none;
  pointer-events: auto !important;
}

#app-side-menu.open #app-side-menu-panel {
  display: block;
}

.app-side-menu-title {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  padding: 4px 8px 8px;
}

#app-side-menu-panel button[data-tab] {
  width: 100%;
  height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  padding: 0 10px;
  cursor: pointer;
  margin-bottom: 6px;
}

#app-side-menu-panel button[data-tab]:last-child {
  margin-bottom: 0;
}

#app-side-menu-panel button[data-tab]:hover {
  background: #f8fafc;
}

@media (max-width: 800px) {
  #app-side-menu {
    top: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: auto;
    right: 12px;
  }
  #app-side-menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 22px;
  }
  #app-side-menu-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    top: auto;
    bottom: calc(74px + env(safe-area-inset-bottom));
    width: auto;
    max-height: min(70vh, 520px);
    overflow: auto;
    border-radius: 14px;
    padding: 10px;
  }
  #app-side-menu-panel button[data-tab] {
    height: 44px;
    font-size: 14px;
    border-radius: 10px;
  }
}
