Angular2 と ng-bootstrap を使用しています。ここから NgbAccordion と NgbTabset の例を取り上げました。機能的には問題ありませんが、スタイルが問題です。クリックしてもタブがアクティブにならず、アコーディオン内のパネルにはまったくスタイルがありません。何が問題なのですか?
<ngb-accordion [closeOthers]="true" activeIds="1">
<ngb-panel id="1" title="Simple">
<template ngbPanelContent>
...
</template>
</ngb-panel>
<ngb-panel id="2">
<template ngbPanelTitle>
<span>★ <b>Fancy</b> title ★</span>
</template>
<template ngbPanelContent>
...
</template>
</ngb-panel>
<ngb-panel id="3" title="Disabled" [disabled]="true">
<template ngbPanelContent>
...
</template>
</ngb-panel>
</ngb-accordion>