/* datatable styles */

/* Search box top right */
div.dataTables_wrapper div.dataTables_filter {
    float: right;
    text-align: right;
    margin-bottom: 0.5rem;
}

/* Pagination bottom right */
div.dataTables_wrapper div.dataTables_paginate {
    float: right;
    text-align: right;
}

/* Length menu bottom left, inline */
div.dataTables_wrapper div.dataTables_length {
    white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_length select {
    width: auto;       /* auto width select box */
    display: inline-block;
    min-width: 80px;  /* minimum width for select box */
}

/* Sorting icons */
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    font-family: "bootstrap-icons";
    float: left;    
    font-size: 0.8rem;
    opacity: 0.4;    
    margin-right: 0.5rem;
}

/* Neutral (sortable but not active) */
table.dataTable thead .sorting:after {
    content: "\F127"; /* bi-arrow-down-up */
}

/* Active ascending */
table.dataTable thead .sorting_asc:after {    
    content: "\F128"; /* bi-arrow-up */
    color: #1f7a45;
    opacity: 0.8;
}

/* Active descending */
table.dataTable thead .sorting_desc:after {
    content: "\F148"; /* bi-arrow-down */
    color: #1f7a45;
    opacity: 0.8;
}

