/* Tabela */
table {
    border-collapse: collapse;
    width: 90%;
    margin: 20px auto;
    background-color: rgb(217, 224, 175);
    box-shadow: 0px 2px 8px rgb(0, 0, 0);
}

th, td {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
}

/* Cabeçalho */
th {
    background-color: #dfebdd; /* Azul escuro */
    color: rgb(255, 255, 255);
}

/* Linhas alternadas */
tr:nth-child(even) td {
    background-color: #6db6ff; /* Azul forte */
    color: rgb(255, 255, 255);
}

/* Hover */
tr:hover td {
    background-color: #baadc5;
    color: white;
}