body {
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 20px;
    color: #333;
}

table {
    background-color: #ffffff;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

h1 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    margin-top: 20px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

table tr:nth-child(odd) {
    background-color: #f9fbfd;
}

table tr:hover {
    background-color: #ecf0f1;
    transition: background-color 0.3s;
}

img {
    transition: transform 0.3s ease;
    vertical-align: middle;
    margin-left: 10px;
}

img:hover {
    transform: scale(1.3);
}

@media only screen and (max-width: 600px) {
    body {
        background: radial-gradient(circle, #3498db 0%, #e74c3c 100%);
        padding: 10px;
    }
    table {
        width: 100%;
        font-size: 14px;
    }
    h1 {
        font-size: 1.2em;
    }
    table td {
        padding: 8px;
    }
}