/* Table Styles specifically for the Main References page */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 8px; /* Slightly rounds the outer corners */
  overflow: hidden; /* Keeps the rounded corners intact */
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle 3D lift */
}

th, td {
  border: 1px solid #cccccc; /* Softened from pure black to a pleasant grey */
  padding: 12px 15px; /* Increased padding for better readability */
  text-align: left;
  line-height: 1.5;
}

th {
  background-color: #304f35; /* Matches your main theme's dark green */
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
}

td a {
  color: #304f35;
  font-weight: bold;
  text-decoration: none;
}

td a:hover {
  text-decoration: underline;
}

/* Adds a subtle alternating background color to rows to help the eye track across the screen */
tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody tr:hover {
  background-color: #f1f5f2; /* Highlights the row the user is currently reading */
}