How am I supposed to exactly have 4 corners of this table to be rounded, I tried border-radius{ on table{ and it still doesnt work, and if do on the cells, it rounds every cells, i just want the main 4 corners of the table to be round?
table{
/*removing the borders between the cells*/
border-collapse:collapse;
font-size: 14px;
/*table shadow*/
box-shadow: 0 6px 5px 1px rgba(0, 0, 0, 0.15);
margin-top: 40px ;
width: 70%;
height: 60%;
border-radius: 15px;
}