body{
    font-family:Arial, Helvetica, sans-serif;
    background-color: rgb(225, 224, 253);
}
.naslov-stranice{
    text-align: center;
    color: rgb(98, 118, 185);
    font-size: 28px;
}
.raspored{
    width: 100%;
    border-collapse: collapse;
}
.border th, td{
    border: 1px solid rgb(231, 62, 175);
}
th, td{
    padding: 8px;
}
th{
    background-color: rgb(22, 22, 99);
    color: white;
    text-align: center;
}
tr:nth-child(even){
    color: chocolate;
}
td:nth-child(even){
    color: rgb(116, 125, 255);
}
tr:nth-child(odd){
    color: rgb(0, 73, 102);
}
td:nth-child(odd){
    color: goldenrod;
}
tr:hover{
    background-color: #ffc3fc;
    cursor: pointer;
}
td:hover{
    background-color: #fff6c6;
    cursor: pointer;
}
caption{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.napomena{
    font-style: italic;
    color: rgb(83, 83, 83);
    font-size: 14px;
}
.povratak{
    background-color: rgb(8, 8, 58);
    color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
}
.povratak :hover{
    background-color: #ffec83;
    transition: background-color 3s ease;
}