public static void ConfigureStylesheet(this Options options, IConfiguration configuration)
        {
            var uiStylesheet = configuration[UIKeys.UI_STYLESHEET];

            if (!string.IsNullOrEmpty(uiStylesheet))
            {
                options.AddCustomStylesheet(uiStylesheet);
            }
        }