.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  margin-inline: -1rem;
}

.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  min-width: 20rem;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  color: var(--color-primary-text) !important;
  padding: 0.75rem 1rem;
  text-decoration: none;
  background: white;

  &:hover {
    background-color: #ddd;
  }
}
