style.css
Save this code as style.css in the same directory.
css
/* Basic page styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header and navigation */
header {
    background-color: #f4f4f4;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

header a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

/* Page title */
h1 {
    color: #CC0000;
    text-align: center;
    font-size: 2rem;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse; /* Merges cell borders for a cleaner look */
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th, td { border: 2px solid #ccc;
         padding: 10px;
         text-align: left; }






/* css   changed kab */
/* Basic page styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header and navigation */
header {
    background-color: #f4f4f4;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

header a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

/* Page title */
h1 {
    color: #CC0000;
    text-align: center;
    font-size: 2rem;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse; /* Merges cell borders for a cleaner look */
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

thead th {
    background-color: #f5ecce;
    font-weight: bold;
    color: #333;
	text-align: left;   /*   added by ken   */
}

/* Zebra-striping for alternating rows for improved readability
tbody tr:nth-child(even) {
    background-color: #d3d3d3;
}
*/

/* Hover effect on table rows */
tbody tr:hover {
    background-color: #add8e6;
}

/* Link inside table */
td a {
    color: #0066cc;
    text-decoration: none;
}