body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

h1, p {
    width: 90%;
    margin: 20px auto;
    text-align: left;
}

input[type="text"] {
    display: block;
    width: 90%;
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #f4f4f4;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

img {
    width: 100px;
    border-radius: 5px;
}

/* Rounded corners for the table */
table {
    border-radius: 5px;
    overflow: hidden;
}

@media (max-width: 768px) {
    h1, p, input[type="text"], table {
        width: 98%; /* Adjusting the width for smaller screens for all elements */
        margin: 10px auto; /* Smaller margin for tighter spaces */
    }
}
