body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6a1b9a, #8e24aa, #9c27b0);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
table {
    width: 90%;
    max-width: 1000px;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
th {
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: bold;
    text-transform: uppercase;
}
td {
    background-color: rgba(0, 0, 0, 0.1);
}
tr:hover td {
    background-color: rgba(255, 255, 255, 0.2);
}
