.table-wrapper {
    width: calc(100% - 10rem);
    margin: 2rem 5rem;
    overflow-x: auto; /* Adds horizontal scrollbar if content overflows */
}

table {
    min-width: 100%; /* Ensures table takes at least the full width of its container */
    border-collapse: collapse;
    border: 1px solid rgb(226, 226, 226);
}

table, table * {
    box-sizing: border-box;
}

th {
    background-color: rgb(23, 159, 217);
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
	vertical-align: middle;
}

th:first-child {
    border-left: none;
}

th:last-child {
    border-right: none;
}

article th a:link, article th a:visited, article th a:hover, article th a:active {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

article th a:hover {
    text-decoration: underline;
}

td {
    padding: 0.5rem;
    border-bottom: 1px solid rgb(226, 226, 226);
    border-right: 1px solid rgb(226, 226, 226);
    font-size: 1rem;
	vertical-align: top;
}

td:last-child {
    border-right: none;
}

tr:nth-child(even) {
    background-color: rgb(252, 251, 250);
}

tr:nth-child(odd) {
    background-color: rgb(255, 255, 255);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: rgb(232, 244, 253);
}

section.about div.table-wrapper {
    margin-left: 9rem;
    max-width: 80ch;
}