public int GetListElementWidth(ConsoleUIElement element)
        {
            int screenWidth = _console.GetSize().Item1;

            return(Convert.ToInt32(Convert.ToDouble(screenWidth) / Convert.ToDouble(element.Options.Length)));
        }