
table {
  border-collapse: collapse;
}

td {
  padding:5px;
}

td:first-child {
  padding-left:5px;
  padding-right:0;
}

tr {
  font-family: Courier;
  font-size: 12pt;
  width:100%;
  padding: 15px;
}

tr:not(:first-child):hover {
  opacity: 0.69;
}

.tr-changed {
  background-color: #FBDD11;
}

@keyframes yellowfade {
    from { background: #FBDD11; }
    to { background: transparent; }
}

th {
  font-style: bold;
  font-size: 14pt;  
  padding: 5px;
}

td {
   animation-name: yellowfade;
   animation-duration: 1.5s;
   text-align: center;
}

