/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Georgia', serif;
    font-size: 1.5em;
    color: #546644;
}

/* Navbar */
.navbar {
    background-color: #d4b38f;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    margin-right: 10px;
}

/* .logo h1 {
    font-family: 'Georgia', serif;
    font-size: 1.5em;
    color: #546644;
} */

.nav-links {
    width: fit-content;
}

.nav-links {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    padding-right: 20px;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    color: #524e34;
    font-size: 1.2em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #546644;
    color: white;
}

table td img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 5px;
}

.container {
    width: 95%;
    justify-self: center;
    /* max-width: 1200px; */
    margin: 20px;
    text-align: center;
}

table tr:nth-child(odd) {
    background-color: #F2D3AC;
}

table tr:nth-child(even) {
    background-color: #f1e0ca;
}