﻿table
{
margin: auto;
width: 100%;
}

table, th, tr, td
{
border: 1px solid black;
text-align: center;
vertical-align: middle;
}

th {
padding: 3px;
}

tr
{
padding: 3px;
}

tr:hover {
background: #B2FF92;
}

#postaja-link{
color: green;
font-weight: bold;
text-align: center;
}


#postaja-center{
text-align: center;
}


#nalagam {
color: green;
font-weight: bold;
font-size: 20px;
text-align: center;
-webkit-animation-duration: 0.25s;
-webkit-animation-name: glow;
-webkit-animation-direction: alternate;
-webkit-animation-iteration-count: infinite;
animation-duration: 0.25s;
animation-name: glow;
animation-direction: alternate;
animation-iteration-count: infinite;
}

@-webkit-keyframes glow {
from { text-shadow: 0 0 0px green; }
to { text-shadow: 0 0 10px green; }
}