/* The CSS layout and styling were refined with the assistance of ChatGPT.
ChatGPT provided suggestions on table styles and link styles.
Source: https://chat.openai.com */


/* Table Styles */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    font-family: Arial, sans-serif;
  }
  
  th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    border-color: black;
  }
  
  th {
    background-color: black; /* Amber shade */
    color: white;
    font-weight: bold;
  }
  
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  tr:hover {
    background-color: #FFECB3; /* Light amber shade */
  }
  
  /* Link styles */
  a {
    color: rgb(0, 0, 0); /* Dark amber */
  }
