/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

ul.navbar {
    list-style-type: none;
    display: flex; /* Use flexbox to make the navigation horizontal */
    justify-content: space-around; /* Distribute the items evenly along the main axis */
    align-items: center;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-color: whitesmoke;
    width: 70%; /* Use the full width of the container */
}

/* Style for the individual navigation items */
ul.navbar li {
    text-align: center;
}

ul.navbar li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the appearance of the links on hover */
ul.navbar li a:hover {
    background-color: #444;
}

h1 {
    text-align: center;
}

table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}
