/* Remember to define borders for both the table and the table cells */
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}

/* Cell padding */
th, td {
    padding: 15px;
}

/* Left-align table headings */
th {
    text-align: left;
}

/* Special style only for table id = t01 */
table#t01 {
    background-color: #f1f1c1;
}