/**
 * Created by InnovaSysCR
 * File name: style.css
 * User: cjmonteroc
 * Date: 16/12/2023
 * Time: 19:38
 * ---- Modification Log
 * User: cjmonteroc
 * Modification DateTime: 16/12/2023 19:38
 * Replicate the above information for each modification and identify it in the code, example:
 *      code above:     private $var = null;
 *      modified code:  public $var = null; //Modify by cjmonteroc
 */

/*Bootstrap update - BEGIN*/
.sidebar .sidebar-brand {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0rem 0rem;
    margin: 0rem 0rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01rem;
}

.sidebar .sidebar-brand .sidebar-brand-icon img {
    max-width: 5rem;
    margin-left: 0rem;
    padding-left: 0rem;
}

.sidebar.toggled .sidebar-brand .sidebar-brand-icon img {
    max-width: 5rem;
}

.topbar .nav-item.dropdown .dropdown-toggle::after {
    font-family: 'Font Awesome 5 Pro';
}

.sidebar #sidebarToggle::after {
    font-family: 'Font Awesome 5 Pro';
}

.sidebar.toggled #sidebarToggle::after {
    font-family: 'Font Awesome 5 Pro';
}

.sidebar .nav-item .nav-link[data-bs-toggle="collapse"]::after {
    font-family: 'Font Awesome 5 Pro';
}

.card .card-header[data-bs-toggle="collapse"]::after {
    font-family: 'Font Awesome 5 Pro';
}

.table {
    margin-bottom: 0px;
}
.table tfoot {
    margin-bottom: 0px;
    border-bottom: hidden;
}
/*Bootstrap update - END*/

/*Pagination style - BEGIN*/
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 10px 20px 0px;
    border-radius: 0px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #86b7fe;
    border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border: none;
    border-radius: 2px !important;
    margin: 0px 1px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.show-entries select.form-control {
    width: 80px;
    margin: 1px;
}
.show-entries select.form-select {
    width: 80px;
    margin: 1px;
}
/*.table-filter .filter-group {*/
/*    float: right;*/
/*    margin-left: 15px;*/
/*}*/
.table-filter input, .table-filter select {
    height: 34px;
    border-radius: 3px;
    border-color: #ddd;
    box-shadow: none;
}
.table-filter {
    padding: 0px 10px;
    border-bottom: 0px;
    margin-bottom: 1rem;
}
.table-filter select, .table-filter input {
    display: inline-block;
    margin-left: 5px;
}
.table-filter input {
    max-width: 15rem;
    display: inline-block;
}
.filter-group select.form-control {
    width: 110px;
}
@media (min-width: 768px) {
    .sidebar .sidebar-brand .sidebar-brand-icon img {
        max-width: 4rem;
    }

    .sidebar.toggled .sidebar-brand .sidebar-brand-icon img {
        max-width: 4rem;
    }
}