I am using Twitter's Bootstrap in an MVC 4 project, and it basically works, however the styling is off. For example, this is what a popover should look like:

However, the button renders incorrectly:

and the popover arrow is not aligned properly:

Any thoughts on what might be happening? Here is my .cshtml file:
<link href="@Url.Content("~/Content/bootstrap.css")" rel="stylesheet" type="text/css"/>
<script src="@Url.Content("~/Scripts/bootstrap.js")"></script>
<div class="well">
<a href="#" id="example" class="btn btn-danger" rel="popover" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
</div>
<script>
$(function () {
$("#example").popover();
});
</script>