.serija_naslov {
    display: inline-block;
    position: relative;
    left: 50%;
    color: var(--clr-mediumBlue);
    transform: translateX(-50%);
}

.serija_img {
    width: 100%;
}

.serija_text {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 85ch;
    font-size: var(--fntsize-medium);
}

table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

table tr{
    height: 45px;
    transition: all 100ms;
}

table tr th,
table tr td {
    border-right: 1px solid var(--clr-mediumBlue);
    border-bottom: 1px solid var(--clr-mediumBlue);
    padding: 5px;
}

table tr th:first-child,
table tr td:first-child {
    border-left: 1px solid var(--clr-mediumBlue);
}

table tr th:first-child,
table tr td:first-child {
    border-left: 1px solid var(--clr-mediumBlue);
}

table tr th {
    background-color: var(--clr-mediumBlue);
    color: white;
    border-top: solid 1px var(--clr-mediumBlue);
}

tr, th, td {
    text-align: center;
}

/* top-left border-radius */
table tr:first-child th:first-child {
    border-top-left-radius: 6px;
}

/* top-right border-radius */
table tr:first-child th:last-child {
    border-top-right-radius: 6px;
}

/* bottom-left border-radius */
table tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

/* bottom-right border-radius */
table tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}