/*
    Datalist CSS
*/

.btn-pdf {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-pdf:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}


.btn-excel {
    color: #28a745;
    border-color: #28a745;
}

.btn-excel:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

/* Listing */
.listing {
    /*
    border: 1px solid rgba(244, 244, 244, 0.76);
    */
    width: 100%;
    font-size:12px;
    background-color:#FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

table.listing thead tr th{
    height: 50px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--table-header-th-color);
}

.listing tr:hover {
    background-color: #f7f7f7;
}
.listing th {
    border-top: 1px solid #d7d7d7;
    color: var(--opposite-text-color);

    border-bottom: 1px solid #d7d7d7;
    background-color: var(--table-header-th-bg-color);

    padding: 5px;
    font-size: 14px;
}
.listing td {
    /*
    border-top: 1px solid #f4f4f4;
    */
    padding: 5px;
    cursor:pointer;
    color:#444444;
    font-size: 14px;
}

.listing a {
    text-decoration: none;
}

/** FIXED **/
.listing-fixed-scroll {
    overflow: auto;
}
.listing-fixed-scroll thead th {
    position: sticky;
    top: -1px;
}
