/* Basic table setup */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Caption */
caption {
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
  color: #003366; 
}

/* Cells */
th,
td {
  border: 1px solid #999999; 
  padding: 8px;
}

/* Header row */
thead th {
  background-color: #99ccff; 
  color: #000000;
}

/* Alternating rows */
tbody tr:nth-child(even) {
  background-color: #f2f2f2; /* light web‑safe gray */
}

/* Totals row */
tfoot th,
tfoot td {
  background-color: #cccccc; 
  font-weight: bold;
}
