body{
    background-color: rgb(243, 214, 255);
}




.tablica{
    border-collapse: separate;
    font-size: 15px;
    min-width: 400;
    width: 100%;
    border-spacing: 8px;
   
}

.tablica thead tr{
    background-color: rgb(93, 0, 129);
    color: azure;
    text-align: center;
    height: 50px;
}

.tablica tbody tr{
    background-color: rgb(185, 141, 255);
    color: rgb(0, 0, 0);
    border-bottom: solid 2px rgb(255, 255, 255);
}

.tablica td,
.tablica th{
    padding: 15px;
}

.tablica tbody tr:nth-child(even){
    background-color: rgb(182, 94, 255);
}

.tablica tbody tr:last-of-type{
    border-bottom: solid 3px rgb(208, 137, 255);
}

.tablica tbody tr:hover{
    background-color: rgb(226, 162, 255);
}

.tablica td:hover,
.tablica th:hover{
    background-color: rgb(210, 143, 255);
}

.tablica th{
    border-radius: 30px;
}

.tablica td{
    border-radius: 30px;
}