.elementor .notebookom-account-wrap{justify-content:flex-end;selector {
  position: relative;
  width: fit-content;
  flex: 0 0 auto;
}

selector .notebookom-account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease,
              transform 0.2s ease,
              visibility 0.2s ease;
}

selector:hover .notebookom-account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

selector .notebookom-account-menu-item,
selector .notebookom-account-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 16px;
  color: #1E1E1E;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  transition: background-color 0.15s ease,
              color 0.15s ease;
}

selector .notebookom-account-dropdown a:hover {
  background: #EEF7EF;
  color: #319C37;
}

selector .account-menu-icon {
  width: 20px;
  text-align: center;
  color: #319C37;
}\n}