public void SellItem(RecycleSlot slot)
    {
        if (slot.empty)
        {
            return;
        }

        slotThatIsSelling = slot;
        confirm.SetActive(true);
    }
 public void CancelSell()
 {
     confirm.SetActive(false);
     slotThatIsSelling = null;
 }