:root {
    --violeta: #6c79e0;
    --violetaclaro: #edecff;
    --fondo: #c4d3f5;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: var(--fondo);
}

table {
    border-radius: 6px;
    width: 80%;
    margin: auto;
    margin-top: 30px;
    border-collapse: collapse;
    border-spacing: 0px;
    background-color: white;
}

table thead tr {
    background-color: var(--violeta);
    color: white;
    font-size: 1em;
    text-align: left;
}

table thead tr th {
    padding: 8px;
}

table thead tr th:first-child {
    border-radius: 6px 0px 0px 0px;
}

table thead tr th:last-child {
    border-radius: 0px 6px 0px 0px;
}

table tbody tr td {
    padding: 8px;
    font-size: 0.9em;
    border-top: 1px solid var(--violetaclaro);
}

table tbody tr:hover {
    background-color: var(--violetaclaro);
}