body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

th, td {
    border: 1px solid #444;
    padding: 15px;
}

th {
    background-color: #ddd;
    text-align: center;
}

/* Image style */
td img {
    width: 100px;
    border-radius: 6px;
    display: block;
    margin: auto;
    transition: transform 0.3s;
}

td img:hover {
    transform: scale(1.15);
}

td {
    line-height: 1.6;
}
