body
{
    background-color: #f7f7f7;
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100vw;
}

.container
{
    text-align: center;
    width: 100vw;
    margin: auto;
    padding: 5%;
}

h1
{
    font-size: 32px;
    margin-bottom: 20px;
}

h2
{
    font-size: 24px;
    margin-bottom: 15px;
}

.table-wrapper
{
    display: flex;
    justify-content: center;
}

.table-container
{
    width: 100vw;
}

table
{
    /* Add a margin at the top to prevent content from hiding under the sticky header */
    margin-top: 20px;
    table-layout: auto;
    border-collapse: collapse;
    width: 95%; /* Adjust the width as needed */
}

th, td
{
    white-space: nowrap; /* Prevent text wrapping */
}

table td
{
    border: 1px solid #ccc;
    padding: 10px;
    text-align: right;
}
table th
{
    border: 1px solid #ccc;
    padding: 10px;
    text-align: right;
    /* Make table header sticky */
    position: sticky;
    top: 0;
    background-color: #f2f2f2;
}

/* Style for links */
a
{
    color: #007bff;
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}

/* Style for buttons */
.button
{
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}

.button:hover
{
    background-color: #0056b3;
    cursor: pointer;
}

/* Footer style */
footer
{
    text-align: center;
    padding: 10px;
    background-color: #f2f2f2;
    color: #777;
}

/* Media query for responsive design */
@media (max-width: 768px)
{
    th, td
    {
        width: 100vw;
    }
    .container {
        padding: 10px;
    }
}