/* Sadržaj styles3.css */

        table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    table-layout: auto;
    border-spacing: 0;
	margin-bottom: 1em;
	border: none;
	line-height: 1;
	font-size: 110%
  }
  th, td {
    padding: 8px;
    border-top: 1px solid #ddd;
    text-align: left;
  }
  th {
    background-color: Bisque;
  }
  th:first-child, td:first-child {
    text-align: center;
  }
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  td.red {
    color: red;
  }
  td.blue {
    background-color: #B2EBF2;
  }
  @media screen and (max-width: 480px) {
  table {
        border-collapse: collapse;
        table-layout: auto;
        display: block;
	    overflow-x: auto;
        line-height: 1;
        font-family: 'Arial', verdena,sans-serif;
        font-size: 12pt;
        font-style: normal;
        font-weight: 400;
}
            table, th, td {
            border-top: 1px solid #ddd;
            padding: 0px;
            line-height: 1;
            
}
            th {
                padding: 2px;
            }
        }