/* Entry List Page Layout */

.entrylist-content-wrapper {
    max-width: 80vw;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: #ffffff;
    border-radius: 10px;
}

.entrylist-content-wrapper h2 {
    color: var(--e-global-color-primary, #222);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.entrylist-content-wrapper table.dataTable {
    width: 100% !important;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.entrylist-content-wrapper table.dataTable thead th {
    background-color: var(--e-global-color-primary, #333);
    color: #fff;
    font-weight: 600;
    padding: 10px;
}

.entrylist-content-wrapper table.dataTable tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.entrylist-content-wrapper table.dataTable tbody tr:hover {
    background-color: #f1f1f1;
}

h2.entry-list-product-title {
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 0px;
}


h2.instant-winner-table-title {
    margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    
    .entrylist-content-wrapper {
    max-width: 95vw;
}
    
}