/* styles.css */
body {
    background-color: orange;
}

#myTable {
    width: 100%;
    background-color: yellow;
    border-collapse: collapse;
}

th, td {
    border: 1px solid black;
    border: 1px solid;
    padding: 5px;
}

th {
    background-color: #f0f0f0;
}

#table-body {
    text-align: center;
}
