.sidebar-nav {
  @apply block text-sm space-y-1;

  & .sidebar-item {
    @apply block no-underline py-2.5 px-3.5 cursor-pointer;

    &.current {
      @apply rounded-md font-medium bg-green-600 text-white hover:text-white;
    }

    &:hover:not(.current) {
      @apply rounded-md bg-gray-100;
    }
  }
}
