body {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
  background: #ffffff;
}

span {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #222222;
}

table {
    border-collapse: collapse; /* Removes the double-border look */
    margin: 5px 0px;
    font-size: 16px;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table thead tr {
    background-color: #2980b9;
    color: #ffffff;
}

table th, table td {
    padding: 8px 10px; /* Adds breathing room around text */
}


/* Zebra striping for easy reading */
table tbody tr:nth-of-type(even) {
    background-color: #fafafa;
}
table tbody tr:nth-of-type(odd) {
    background-color: #f0f0f0;
}
