p{
    text-align: center;
}

#buttons a {
  padding: 8px 16px;
  margin-right: 10px;
  background-color: #eee;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

#buttons a.active,
#buttons a:hover {
  background-color: #b22234; /* a strong red */
  color: white;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 90%;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

th, td {
  border: 1px solid #999;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #b22234; /* matching button color */
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #ddd;
}
