/* General Page Styling */
body {
  font-family: "Calibri", "Georgia", "Times New Roman", serif;
  background-color: #f9f7f6; /* soft neutral */
  color: #2e2e2e;
  margin: 2rem;
  line-height: 1.6;
}

/* Heading */
h1 {
  text-align: center;
  color: #600000; /* deep maroon */
  margin-bottom: 1.5rem;
  font-size: 2em;
  border-bottom: 3px solid #a05252;
  padding-bottom: 0.5rem;
}

/* Table Styling */
table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

thead th {
  background-color: #800000; /* strong maroon */
  color: #fff;
  text-align: left;
  padding: 10px;
  font-weight: bold;
}

tbody td {
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
}

/* Alternate row shading */
tbody tr:nth-child(even) {
  background-color: #f4f0ef; /* soft neutral tone */
}

/* Hover effect on entire row */
tbody tr:hover {
  background-color: #FFFF66; /* faint maroon tint */
}

/* Hover effect on each cell */
tbody td:hover {
  background-color: #eed9d0; /* soft rose-maroon tone */
  cursor: pointer;
}

/* Links */
a {
  color: #800000;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #a05252; /* lighter maroon */
}

/* List styling */
ul {
  margin-top: 1.5rem;
  padding-left: 20px;
}

li {
  margin: 5px 0;
}
