body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f7f7f7;
    color: #333;
}
h1, h2, h3, h4 {
    color: #2c3e50;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 40px;
    font-size: 14px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
}
th {
    background-color: #f5f5f5;
    font-weight: bold;
    text-align: left;
}
tr:nth-child(even) {
    background-color: #ffffff;
}
tr:nth-child(odd) {
    background-color: #fafafa;
}
a {
    color: #0077cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Images have rounded corners and extra spacing beneath to separate them from subsequent content */
img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
}

/* Increase spacing before section headings to create breathing room between days */
h2 {
    /* provide breathing room between daily sections */
    margin-top: 40px;
    margin-bottom: 10px;
}

/* spacing for the country list on the landing page */
.country-links {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}
.country-links li {
    margin-bottom: 10px;
    font-size: 18px;
}
.country-links li a {
    color: #2c3e50;
    text-decoration: none;
}
.country-links li a:hover {
    text-decoration: underline;
}
