/* Style the HTML table that shows the tabular database data */

.dataList {
    margin-top: 1em; 
}

.dataList h2 {
    text-align: center;
}

.dataList table {
    margin:auto;     /* margin:auto makes left and right margins the same, centers the table */
}

.dataList th, .dataList td {
    padding: 4px;
    padding-bottom: 2px;
}

.dataList td {
    background-color: #DDEEEE;
    font-size:13px;
}

.dataList thead {  /* style of td elements that are inside of a thead element (column headings)) */
    background-color: #AABBCC;
}

.dataList th {  /* style of td elements that are inside of a thead element (column headings)) */
    font-weight: bold;
    font-size:16px;
    padding-top:8px;
}

.dataList img {
    width:150px;
}