
table.eoytable {
  width: 80%;
  margin: 2rem auto;        /* centers table horizontally */
  border-collapse: collapse;
  padding: 0px;
  border:0px;
}

table.eoytable th,
table.eoytable td {
  text-align: center;       /* center content in cells */
  vertical-align: middle;
  padding: 0.5rem 0.75rem;
}

/* Zebra only for data rows */
table.eoytable tbody tr:nth-of-type(odd) td {
	background-color: #ffcc00;
	color:#000000;
    padding-top: 10px;
}

table.eoytable tbody tr:nth-of-type(even) td {
	background-color: #cc0000;
	color: #ffffff;
	padding-top: 10px;
}

/* Optional: slightly clearer header */
table.eoytable th {
  font-weight: 700;
  color: #fff;
  background-color: #000;
}

.centered {
    text-align: center;
}