/* General body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #865579;
  margin: 0;
  padding: 20px;
  color: #333;
}

/* Styling for the table */
table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styling for table headers */
table th,
table td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

/* Header row styling */
tr:nth-child(1) {
  background-color: #f2f2f2;
}

/* Hover effect for rows */
tr:hover {
  background-color: #f5f5f5;
}

/* Styling for the "Update" link */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
