/* Reset some default styles */
html, body {
  height: 100%;
  margin: 0;
  font-family: sans-serif;
  font-weight: 100;
}

body {
  background: linear-gradient(45deg, #e9cf0e, #07438d);
  background-attachment: fixed;
}

/* Center the image */
.image {
  display: block;
  margin: 50px auto;
  width: 25%;
}

/* Style the table */
table {
  width: 800px;
  border-collapse: collapse;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

caption {
  padding: 15px;
  font-weight: bold;
  font-size: larger;
  color: #fff;
}

th {
  padding: 15px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.3);
  color: #151ed6;
}

thead {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

/* Add hover effect for table rows */
tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

/* Style links inside table cells */
tbody tr td a {
  text-decoration: none;
  color: inherit;
}

tbody a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 0;
  cursor: pointer;
}

tbody a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Remove background on links inside table cell hover */
tbody tr td a:hover {
  background-color: transparent;
}

/* Style the footnote section */
.footnote {
  width: 800px;
  margin: 10px auto;
  text-align: right;
  padding-left: 15px;
  box-sizing: border-box;
  margin-bottom: 50px;
}

.footnote p {
  font-size: smaller;
  color: #b7b5b5;
  margin: 0;
}
