body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #00488DFF;
}

/* Navigation styles */
.main-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.nav-list {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 40px;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: center;
}

.nav-list li {
    display: list-item;
    list-style: none !important;
    flex: 1;
    min-width: 100px;
}

.nav-list a {
    text-decoration: none;
    color: #00488DFF;
    display: inline-block;
    background: #ffffff;
    border: 1px solid #d0d7e6;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    transition: background-color 150ms ease, transform 100ms ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.nav-list a:hover,
.nav-list a:focus {
    background-color: #e6f0fb;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-nav {
        justify-content: space-between;
        padding: 0 10px;
    }

    .nav-toggle {
        display: block !important;
    }

    .nav-list {
        display: none !important;
        flex-direction: column !important;
        width: 100%;
        margin-top: 10px;
        gap: 8px;
    }

    .nav-list.open {
        display: flex !important;
    }

    .nav-list li {
        text-align: center;
    }
    
    .nav-list a {
        display: block !important;
    }
}

.table-container {
    width: 80%;
}

table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin: 0 auto;
}

td {
    padding: 10px;
    text-align: center;
}

td img {
    display: block;
    margin: 0 auto;
}
