body {
    background: linear-gradient(120deg, #bb5f8f, #5d288f);
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    padding: 30px;
}


h1 {
    color: #a07bc0;
    font-size: 45px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}


table {
    margin: auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px #e733c04d;
    border: 3px solid #f3c4fb;
}


th {
    background: linear-gradient(to right, #fc61ae, #551992);
    color: white;
    padding: 15px;
    font-size: 20px;
}


td {
    padding: 15px;
    font-size: 18px;
    color: #a361d1;
}


tr:nth-child(even) {
    background-color: #fff0fa;
}

tr:nth-child(odd) {
    background-color: #f9f0ff;
}


tr:hover {
    background-color: #e9c8ff;
    transform: scale(1.02);
    transition: 0.3s;
}


th, td {
    border-bottom: 1px solid #f3c4fb;
}