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);
}
