body {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
  padding: 20px;
  margin: 0;
}

h2 {
  text-align: center;
  color: #00796B;
  margin-bottom: 20px;
}

table {
  width: 90%;
  margin: auto;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #00796B;
  color: white;
}

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

a {
  color: #00796B;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}


.action-links {
  text-align: center;
  margin: 30px 0;
}

.action-links a {
  display: inline-block;
  margin: 0 15px;
  padding: 10px 20px;
  background-color: #02b9a3;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.action-links a:hover {
  background-color: #004d40;
  transform: scale(1.05);
}
