I try to make round corners of my table
Here is my code
<table class="table" style="width: 100%;border-style: solid; border-color: #1d69b4;border-radius: 10px;">
<tr style="background: white;">
<th style="font-size: 18px; text-align: center;">
<b>Hours</b><b style="margin-left: 30px;"> Monday</b>
</th>
<th style="font-size: 20px; text-align: center;">
<b>Hours</b><b style="margin-left: 30px;"> Tuesday</b>
</th>
<th style="font-size: 20px; text-align: center;">
<b>Hours</b><b style="margin-left: 30px;"> Wednesday</b>
</th>
<th style="font-size: 20px; text-align: center;">
<b>Hours</b><b style="margin-left: 30px;"> Thursday</b>
</th>
<th style="font-size: 20px; text-align: center;">
<b>Hours</b><b style="margin-left: 30px;"> Friday</b>
</th>
<th style="font-size: 20px; text-align: center;">
<b>Hours</b><b style="margin-left: 30px;"> Saturday</b>
</th>
<th style="font-size: 20px; text-align: center;">
<b>Hours</b><b style="margin-left: 30px;"> Sunday</b>
</th>
</tr>
<tr>
<td class="title" style="text-align: center; font-size: 20px;">
<div style="margin-top: 10px;"><b class="blue-text">08.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">09.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">10.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">11.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">12.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">13.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">14.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">15.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">16.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">17.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">18.00</b></div>
<div style="margin-top: 10px;"><b class="blue-text">19.00</b></div>
</td>
</tr>
</table>
But it not works.
Where is trouble?
How I can make it rounded?
EDIT
I added whole code oа View for full understanding of problem. I see border, but not with rounded corners