.nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(75 85 99);
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.nav-link:hover {
  background-color: rgb(243 244 246);
  color: rgb(17 24 39);
}

.nav-link-active {
  background-color: rgb(17 24 39);
  color: white;
}

.nav-link-active:hover {
  background-color: rgb(31 41 55);
  color: white;
}

.dropdown-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: rgb(55 65 81);
  text-decoration: none;
  transition: background-color 150ms ease;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: rgb(249 250 251);
}

.dropdown-item-active {
  background-color: rgb(249 250 251);
  font-weight: 500;
}

.dark .dropdown-item {
  color: rgb(226 232 240);
}

.dark .dropdown-item:hover,
.dark .dropdown-item-active {
  background-color: rgb(51 65 85);
}
