.wallet-menu-panel,
[data-id="conteiner_connected"] {
  /* Ensure absolute menu positions relative to the connected container */
  position: relative;
}

.wallet-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1000;

  min-width: 180px;
  padding: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.wallet-menu-panel.visible-modal-wallet {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.wallet-menu-panel button {
  width: 100%;
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
}

.wallet-menu-panel .c-ta-dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
}

.wallet-menu-panel .wallet-menu-icon {
  position: absolute;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.wallet-menu-panel .wallet-menu-text {
  display: inline-block;
}

.wallet-menu-panel .c-ta-dropdown-toggle:hover {
  background: #f1f5f9;
}