table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 5px;
    font-family: arial, sans-serif;
    font-size: 15px;
    border: 2px solid black;
    border-radius: 8px;
}
th{
    background-color: darkblue;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding-bottom: 12px;
    padding-top: 12px;
    padding-left: 18px;
    padding-right: 18px;
    height: 50px;
    border-bottom: 3px solid cyan;
}
td{
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
    vertical-align: middle;
    border: 4px solid blue;
}
td:nth-child(odd){
    background-color: white;
}
td:nth-child(even){
    background-color: rgb(121, 214, 121);
}
td:hover:nth-child(odd){
    background-color: aquamarine;
    cursor: pointer;
}
td:hover:nth-child(even){
    background-color: cyan;
    cursor: pointer;
}
caption{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.prvi{
    background-color:rgb(75, 151, 75);
} ;
td:last-child{
    font-style: italic
}