diff --git a/_layouts/default.html b/_layouts/default.html
index 3a82ec3..8d88c53 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -232,6 +232,29 @@
width: 1150px;
margin: 0 auto; /* This will center the container */
}
+
+ table {
+ border-collapse: collapse;
+ width: 100%;
+ border: 2px solid black; /* 2px border around the table */
+ }
+
+ table, th, td {
+ border: 1px solid black; /* 1px lines for cells and header */
+ }
+
+ th {
+ background-color: white; /* White background for header */
+ }
+
+ tr:nth-child(even) {
+ background-color: #d5e3f3; /* Blue for even rows */
+ }
+
+ tr:nth-child(odd) {
+ background-color: white; /* White for odd rows */
+ }
+
@@ -240,7 +263,7 @@