body {
    font-family: Arial;
}

/* IMPORTANT: remove centering */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 0; /* THIS fixes your issue */
}

th, td {
    padding: 6px 10px;
}

th a {
    text-decoration: none;
}

header {
    background-color: darkslategrey;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

#welcome {
    font-size: x-large;
    color: white;
}

#links {
    font-size: x-large;
    color: white;
}

/* SIDE-BY-SIDE LAYOUT (LEFT ALIGNED) */
.content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
    padding-left: 20px;
}

.table-container {
    width: 50%;
}

.chart-container {
    width: 40%;
}

#myChart {
    width: 50px !important;
}