/* Style the header with a grey background and some padding */
.header {
	overflow: hidden;
	background-color: #f1f1f1;
	padding: 20px 10px;
	text-align: right;
}

/* Style the header links */
.header a {
  float: left;
  color:#F00;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
  margin-left:5px !important;
  background-color:#ddd !important;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color:#FFF;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
  text-transform:capitalize;
  font-weight:bold;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */ 
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

.footer {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 5px 5px;
}

/* Style the header links */
.footer a {
  float: left;
  color:#F00;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
  margin-left:5px !important;
  background-color:#ddd !important;
}

/* Change the background color on mouse-over */
.footer a:hover {
  background-color: #ddd;
  color:#FFF;
}

/* Style the active/current link*/
.footer a.active {
  background-color: dodgerblue;
  color: white;
}

.deo {
  overflow: hidden;
  padding: 2px 2px;
}

/* Style the header links */
.deo a {
  float: left;
  color:#F00;
  text-align: center;
  padding: 2px;
  text-decoration: none;
  font-size: 16px; 
  border-radius: 4px;
}

/* Change the background color on mouse-over */
.deo a:hover {
  background-color: #ddd;
  color:#FFF;
}

/* Style the active/current link*/
.deo a.active {
  background-color: dodgerblue;
  color: white;
}

#tabela {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#tabela td, #tabela th {
    border: 1px solid #ddd;
    padding: 8px;
}

#tabela tr:nth-child(even){background-color: #f2f2f2;}

#tabela tr:hover {background-color: #ddd;}

#tabela th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #666;
	color: white;
}

#pretraga {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('searchicon.png');
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
}