body {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #FFFFFF;
    font-family: Arial, sans-serif;
}

img {
    display: block; /* Make the image a block-level element */
    margin: auto; /* Center the image horizontally */
    max-width: 100%; /* Ensure the image does not overflow its container */
    height: auto; /* Maintain aspect ratio */
}

.centered-div {
    width: 80%; /* Adjust the width as needed */
    overflow-x: auto; /* Adds a horizontal scrollbar if the table is wider than the div */
    margin-top: 20px; /* Add some space between the image and the table */
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #0097B2;
    color: rgb(0, 0, 0);
}
