public override void Draw()
        {
            ConsoleColor textColor = activeComponent == textBox ? ConsoleColor.White : ConsoleColor.DarkGray;

            activeComponent.Focus();

            searchBox.Draw();
            renderer.With(textColor).DrawText(new Point(3, 21), quantityLabel);
            textBox.Draw();
            listBox.Draw();
        }