
table {
    width:  100%;
    border: 0;
    border-collapse:collapse;
    margin: 20px 0;

}

th {
    text-align: left;
    cursor: pointer;
    padding: 8px;
    background-color: var(--actionSecondary);
    transition: all 0.3s ease;
}

th.sorting_asc {
    background-color: var(--actionPrimary);
}

th.sorting_desc {
    background-color: var(--actionPrimary);
}


th:hover {
    background-color: var(--actionPrimaryHover);
}

tr {
    cursor: pointer;
    transition: all 0.3s ease;
}

tr.even {
    background-color: var(--cardBackground);
}

tr.odd {
    background-color: var(--cardBackgroundHover);
}

tr:hover {
    background-color: var(--white);
}

td {
    padding: 8px;
}
