table {
    width: 100%;
    border-collapse: collapse;
    border-style: hidden;
}
/* Zebra striping */
tr:nth-of-type(odd) {
    background: #eee;
}
th {
    background: #2c87f0;
    color: white;
    font-weight: bold;
}
td, th {
    padding: 3px;
    border: 1px solid #cbcaca;
    text-align: left;
    font-size: 13px;
    font-weight: lighter;
}

td i {
    color: #3b3b55;
    font-size: 14px;
}

#div-container-main-table {
    overflow-x: auto;
    border: 1px solid #cbcaca;
    border-radius: 15px;
}

#div-container-pagination-table,
#div-container-pagination-table-mobile {
    padding-top: 12px;
}

.cls-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 auto;
}

.cls-pagination__link {
    min-width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #cddae8;
    background: #ffffff;
    color: #2a587d;
    font-size: 12px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    padding: 0 10px;
    text-decoration: none !important;
    transition: all .15s ease;
}

.cls-pagination__link:hover {
    background: #edf4fb;
    border-color: #b9cde1;
}

.cls-pagination__link--active {
    background: #1e6a9d;
    border-color: #1a5b87;
    color: #ffffff;
    cursor: default;
}

.cls-pagination__link--nav {
    min-width: 86px;
}

.cls-pagination__link--disabled {
    background: #f2f5f8;
    border-color: #dde5ed;
    color: #8a9aaa;
    cursor: not-allowed;
}

.cls-pagination__ellipsis {
    color: #7f90a1;
    font-weight: 700;
    font-size: 12px;
    padding: 0 3px;
}

.cls-pagination__summary {
    margin-left: 8px;
    color: #5d748a;
    font-size: 12px;
    font-weight: 600;
}

@media screen and (max-width: 760px) {
    .cls-pagination {
        gap: 5px;
    }

    .cls-pagination__summary {
        width: 100%;
        margin-left: 0;
        margin-top: 2px;
        text-align: center;
    }

    .cls-pagination__link--nav {
        min-width: 78px;
    }
}

