div.dataTables_length {
    float: left;
}

div.dataTables_filter {
    float: right;
}

div.dataTables_info {
    float: right;
}

div.dataTables_paginate {
    float: left;
}

div.DTTT {
    float: left;
    margin-right: 50px;
}

div.buttons {
    clear: both;
}

/* sets the color of the buttons (and makes it a circle) that are not the current page */
/* set important on the border radius so it will make the circle, without it I get a flat edge */
.page-item .page-link {
    width: 35px;
    height: 35px;
    line-height: 20px;
    stroke-width: 20px;
    text-align: center;
    align-content: center;
    color: #9F843B;
    background-color: transparent;
    border-color: #9F843B;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05000000074505806);
    border-radius: 50% !important;
    -moz-border-radius: 50%;
    display: block;
    padding-right: 0;
    padding-left: 0;
}


/* sets the color of active current page button (and makes it a circle) */
.page-item.active .page-link {
    width: 35px;
    height: 35px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background-color: #9F843B;
    border-color: #9F843B;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05000000074505806);
    border-radius: 50% !important;
    -moz-border-radius: 50%;
    display: block;
    padding-right: 0;
    padding-left: 0;
}

/* sets the color of a button when hovered over and makes it a circle */
.paginate_button:hover .page-link {
    width: 35px;
    height: 35px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background-color: #9F843B;
    border-color: #9F843B;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05000000074505806);
    border-radius: 50% !important;
    -moz-border-radius: 50%;
    display: block;
    padding-right: 0;
    padding-left: 0;
}

/* do not show buttons that are not needed at this time - if on first page, dont show prev page or first page buttons */
.page-item.disabled .page-link {
    display: none;
}

/* put space between the buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 10px;
    margin-left: 0;
    display: inline;
    border: 0;
    /* text-align: start; */
}

/*
leave here in case they want to change the sorting look
//this one changes the words and arrows
.sorting_asc { color: orange; font-size:15px}
.sorting_desc { color: orange; font-size:15px}

//this one changes just the arrow colors
//look at https://codepen.io/elenatorro/pen/LZQXYN for more ideas
table.dataTable thead .sorting_desc::before,
table.dataTable thead .sorting::before,
table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_desc::after,
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after {
    color: red;
    opacity: 0.9;
}
*/


tr td.sorting_1 {
    background-color: #f5f5f5;
}


