body {
    background-color: "#fff";
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

.logo {
    padding: 1rem;
    text-align: center;
}

.logo-text {
    padding: 1rem;
    text-align: left;
    text-transform: uppercase;
    font-size: 1.25rem;
}

.header {
    margin-bottom: 3rem;
}

.copyright {
    font-size: 0.70rem;
}

.footer a {
    color: grey !important;
}


/*.table {
    width: max(360px, 80%);
}*/

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    .header {
        margin-bottom: 1rem;
    }
    .logo-text {
        padding: 1rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;
    }
    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .sednice tr {
        margin: 0 0 1rem 0;
    }
    .sednice tr:nth-child(odd) {
        background: #e4e4e4;
    }
    .sednice td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    .sednice td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        /*top: 0;*/
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
    /*
  Label the data
You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
  */
    .sednice td:nth-of-type(1):before {
        content: "Sednica";
    }
    .sednice td:nth-of-type(2):before {
        content: "Vrsta";
    }
    .sednice td:nth-of-type(3):before {
        content: "Datum";
    }
    .sednice td:nth-of-type(4):before {
        content: "Vreme";
    }
    .sednice td:nth-of-type(5):before {
        content: "Materijal";
    }
}