body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 10px; /* Adds padding around the main content */
}

table {
    width: 100%; /* Ensures table stretches full width */
    margin: 0; /* Remove default margins */
    padding: 10px; /* Add 10px padding inside the table */
}

th, td {
    vertical-align: middle; /* Center align content */
    padding: 10px; /* Padding inside table cells */
}

th {
    text-align: center; /* Center align header text */
}

td {
    text-align: left; /* Left align body text */
}

footer {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
}
