/* za ostale kolone */
table{
    background-color: white;
    font-family: 'SansRegular';
}
/* za prvu kolonu */
table > tbody:first-of-type > tr > td:first-child{
	color: #000;
	/*width: 10%;*/
}

tbody tr:nth-of-type(odd) {
	background-color: rgba(94, 151, 40, 0.2) !important;
}
/* za zadnju kolonu */
table > tbody:first-of-type > tr > td:last-child{
   /*width: 20%;*/
}
/* za prvi red */
tbody tr:first-child td {
	background-color: #5E9728 !important;
	font-family: 'SansBold';
	color: #fff !important;
	position: relative;
	height: 100px;
	text-align: center;
	background-clip: padding-box;
    vertical-align: middle;
}

tbody tr:first-child td *{
	width: 100%;
	/*position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);*/
}