Dialog body far too small

Dialog body far too small

I am using the following (NuGet download ASP.NET)

  
  1. <link rel="stylesheet" href="Content/themes/base/dialog.css" />

    
  1. <script>
  2.        $(function () {
  3.            $("#dialog-message").dialog({
  4.                modal: true,
  5.                buttons: {
  6.                    Ok: function () {
  7.                        $(this).dialog("close");
  8.                    }
  9.                }
  10.            });
  11.        });
  12.    </script>

Here is the Div
    
  1. <div id="dialog-message" title="Download complete">
  2.           <p>
  3.               Your files have downloaded successfully into the My Downloads folder.
  4.           </p>
  5.           <p>
  6.               Currently using <b>36% of your storage space</b>.
  7.           </p>
  8.       </div>

When I run this there is no background to the title and the body of the text is really small in width - probably about a 1/10 the width of the dialog. 


Any idea