/* --- Page Basics --- */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #333;
  margin: 20px;
  text-align: center;
}

/* --- Table Container --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background: #fff;
  font-size: 14px;
}

/* --- Table Borders & Cells --- */
table th,
table td {
  border: 1px solid #ccc;
  padding: 10px;
}

/* --- Header Row --- */
table thead th {
  background: #333;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* --- Body Rows --- */
table tbody tr:nth-child(even) {
  background: #f0f0f0;
}

table tbody tr:hover {
  background: #e6f2ff;
}

/* --- Notes Under Table --- */
.note {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
  display: block;
  font-style: italic;
}
