* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: #0a4fb4;
    font: 16px Arial, sans-serif;
}

body {
    background-color: white;
    max-width: 800px;
    font-family: system-ui, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding: 2rem 4rem 10rem 4rem;
    border-radius: 20px;
    margin: 20px auto;
}

/* Headings */
h1 {
    margin: 1rem 0;
}

h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.25rem;
}

/* Paragraphs */
p {
    margin-bottom: 1rem;
    color: #333;
    width: 38em;
}


/* Tables */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

thead th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 2px solid #0a4fb4;
}

tbody td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

tbody tr:nth-child(even) {
  background-color: #f7f9fc;
}

tbody tr:hover {
  background-color: #eef3fb;
}

td:last-child,
th:last-child {
  text-align: right;
  white-space: nowrap;
}

/* Template links */
.table-links a {
  margin-right: 0.5rem;
  text-decoration: none;
  color: #0a4fb4;
  font-weight: 500;
}

.table-links a:hover {
  text-decoration: underline;
}
