

table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
tr:nth-child(even) {
    background-color: #ffd6ec
}

tr:hover {
    background-color: rgb(147, 231, 252);
}

td:hover {
    background-color: rgb(255, 47, 127);
}

th:hover {
    background-color: rgb(255, 47, 127);
}