/*
 * WPDataTables Light skin styles
 */
 
.wpDataTablesWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*  Search box   */
.wpDataTablesWrapper .wpSearchBoxContainer {
    padding: 5px 0;
}

.wpDataTablesWrapper .wpSearchBoxContainer .wpSearchBox > input{
    padding: 0 5px;
    border: solid 1px lightgrey;
    font-size: 16px;
    font-weight: normal;
}

/*  Table   */

/*  Table Header  */


.wpDataTablesWrapper table.wpDataTable > thead > tr > th {
    color: #333333;
    border: 1px solid #cccccc;
    border-bottom-width: 2px;
    font-weight: 700;
    padding: 7px 10px;
    text-align: right;
    cursor: pointer;
    background: #ffffff none;
}

/*  Table Body  */

.wpDataTablesWrapper table.wpDataTable > tbody > tr > td,
.wpDataTablesWrapper table.wpDataTable > tfoot > tr > td{
    border: 1px solid;
    border-color: #e0e0e0; /* td inner border color */
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}


.wpDataTablesWrapper table.wpDataTable tr td:first-child {
    border-left-color: #c6c6c6; /* table outer border color */
}

.wpDataTablesWrapper table.wpDataTable tr:last-child td {
    border-bottom-color: #c6c6c6; /* table outer border color */
}

.wpDataTablesWrapper table.wpDataTable tr.odd td {
    background-color: #f5f5f5; /* odd rows background color */
}

.wpDataTablesWrapper table.wpDataTable tr.even td {
    background-color: #ffffff; /* even rows background color */
}
.wpDataTablesWrapper table.wpDataTable tr.odd:hover > td,
.wpDataTablesWrapper table.wpDataTable tr.even:hover > td{
    background-color: #e8e8e8; /* rows hover background color */
}

.wpDataTablesWrapper table.wpDataTable tr.odd.selected > td,
.wpDataTablesWrapper table.wpDataTable tr.even.selected > td {
    background-color: #faf8e2; /* selected rows background color */
}

/*  Table Pagination  */

.wpDataTablesWrapper .dataTables_paginate{
    font-size: 13px !important;
    font-family: sans-serif !important;
    margin: 5px 0;
}

.wpDataTablesWrapper .dataTables_paginate .paginate_button,
.wpDataTablesWrapper .dataTables_paginate .paginate_number {
    min-width: 1.5em;
    padding: 0.6em 1.164em 0.4em 1.164em;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    color: #666;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition:.5s;
}

.wpDataTablesWrapper .dataTables_paginate > .paginate_button {
    /*font: 0/0 a;*/
    background-color: #f5f5f5 !important;
    color: #666 !important;
    border: 0;
    text-shadow: none;
    height: 35px;
    line-height: 0;
    font-weight: normal;
    /*text-indent: -9999em;*/
    padding: 0;
}

.wpDataTablesWrapper .dataTables_paginate button.paginate_button:focus {
    outline: none !important;
    box-shadow: none;
}

.wpDataTablesWrapper .dataTables_paginate .paginate_button:hover:not(:disabled) {
    color: #666;
    background-color: #f5f5f5 !important
}

.wpDataTablesWrapper .dataTables_paginate .paginate_button:disabled {
    color: transparent !important;
    background-color: transparent !important;
}