body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #ff758c, #ff7eb3); /* Appealing gradient */
    color: #ffffff;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 60%;
    border: 1px solid #ddd;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    background-color: #ffffff;
    color: #333333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
    text-align: left;
    padding: 16px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #d3d3d3;
    transition: background-color 0.3s ease;
}

input, button {
    margin: 10px;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
}

input {
    background-color: #ffffff;
    color: #333333;
}

button {
    background-color: #ff758c; /* Button color matching the gradient */
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff7eb3; /* Hover color matching the gradient */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}