* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #f0f4f8;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

div {
    width: 480px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

h1 {
    background: #4f46e5;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 22px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    width: 40%;
    background: #4f46e5;
    color: white;
    padding: 16px 20px;
    text-align: left;
}

td {
    width: 60%;
    padding: 16px 20px;
    background: #f8fafc;
}