.gui-menu-item {
  list-style: none;

  a {
    cursor: pointer;
  }

  &.gui-disabled {
    pointer-events: none;
  }
}

.gui-dropdown__content .gui-menu-item > a {
  @apply text-neutral-20 text-base py-3 px-4 block;

  text-decoration: none;
  white-space: nowrap;

  &:hover, &:focus {
    @apply text-neutral-20 bg-neutral-98;
  }
}

.gui-dropdown__content .gui-menu-item.gui-disabled {
  opacity: 0.5;
}

.gui-dropdown__content .gui-menu-item.gui-divider {
  @apply px-1 bg-neutral-90;

  height: 1px;
  overflow: hidden;
}
