Can you help me troubleshoot an issue with creating a nested bootstrap collapse? The main collapse with id="ss11" is working properly when the button is clicked, but the nested collapses are not functioning. Can you point out what may have gone wrong and how I can fix it to make all nested collapses work as intended? Here is the relevant HTML code:
<div class="card-body">
<div>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#ss11" aria-expanded="false" aria-controls="ss11">
ss1 : science
</button>
</div>
<div class="collapse" id="ss11">
<div class="card card-body">
<div>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#ss12013/20141" aria-expanded="false" aria-controls="ss12013/20141">
2013/20141
</button>
</div>
<div class = "collapse" id = "ss12013/20141">
<p>hello lindsay lowhay</p>
</div>
<div>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#ss12014/20151" aria-expanded="false" aria-controls="ss12014/20151">
2014/20151
</button>
</div>
<div class = "collapse" id = "ss12014/20151">
<p>hello lindsay lowhay</p>
</div>
</div>
</div>
<div>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#ss12" aria-expanded="false" aria-controls="ss12">
ss1 : art
</button>
</div>
<div class="collapse" id="ss12">
<div class="card card-body">
<div>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#ss12013/20142" aria-expanded="false" aria-controls="ss12013/20142">
2013/20142
</button>
</div>
<div class = "collapse" id = "ss12013/20142">
<p>hello lindsay lowhay</p>
</div>
<div>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#ss12014/20152" aria-expanded="false" aria-controls="ss12014/20152">
2014/20152
</button>
</div>
<div class = "collapse" id = "ss12014/20152">
<p>hello lindsay lowhay</p>
</div>
</div>
</div>
</div>