div.collectionTable table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    border-radius: 15px;
    border: 1px solid #cfcfcf;
}
div.collectionTable th, td {
    position: relative;
    padding: 8px 12px;
    border: 0px solid #cfcfcf;
}
div.collectionTable th {
    color: #333333;
    background-color: #e6e6e6;
    font-size: 15px;
}
div.collectionTable th[data-sort-property] {
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
div.collectionTable th[data-sort-property]:hover {
    text-decoration: none;
    background-color: #cccccc;
}
div.collectionTable tr:nth-child( odd ) {
    background-color: #f9f9f9;
}
div.collectionTable tr:nth-child( even ) {
    background-color: #f2f2f2;
}
div.collectionTable tr:hover {
    background-color: var( --color-light );
}
div.collectionTable a {
    display: block;
    color: #333333;
    font-weight: bold;
    text-decoration: none;
}
div.collectionTable a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}