@charset "UTF-8";

.listview-wrapper {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(33, 37, 41, .08);
    border-radius: 1.25rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    overflow: hidden;
}

.listview-wrapper .card-header,
.listview-wrapper .card-footer {
    background: #fff;
    border-color: rgba(33, 37, 41, .08);
}

.listview-wrapper .listview-toolbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.listview-wrapper .listview-toolbar .row {
    align-items: center;
}

.listview-wrapper .listview-toolbar-primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 249, 250, .92) 100%);
}

.listview-wrapper .listview-toolbar-secondary {
    background: rgba(248, 249, 250, .72);
}

.listview-wrapper .listview-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 0;
}

.listview-wrapper .btn.btn-light {
    background: #f1f3f5;
    border-color: transparent;
    color: #495057;
}

.listview-wrapper .btn.btn-light:hover,
.listview-wrapper .btn.btn-light:focus {
    background: #e9ecef;
    border-color: transparent;
    color: #212529;
}

.listview-wrapper .btn.btn-primary {
    box-shadow: none;
}

.listview-wrapper .form-control,
.listview-wrapper .input-group-text {
    border-color: rgba(33, 37, 41, .1);
}

.listview-wrapper .search-query-input {
    background: #fff;
}

.listview-search-eraser {
    border-left: none;
    border-right: none;
    background-color: #fff;
    transform: translateX(-1px);
}

.listview-search-clicker {
    background: #fff;
}

.listview-wrapper .table-striped > tbody > tr:nth-of-type(2n+1) > * {
    --bs-table-bg-type: rgba(248, 249, 250, .72);
}

.listview-wrapper .listview-body {
    background: #fff;
}

.listview-wrapper .listview-table {
    --bs-table-hover-bg: rgba(13, 110, 253, .035);
}

.listview-wrapper .listview-table thead th {
    background: rgba(248, 249, 250, .92);
    border-bottom-width: 1px;
    border-color: rgba(33, 37, 41, .08);
    color: #6c757d;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .01em;
    vertical-align: middle;
    white-space: nowrap;
}

.listview-wrapper .listview-table thead th a {
    color: inherit;
    text-decoration: none;
}

.listview-wrapper .listview-table tbody td,
.listview-wrapper .listview-table tfoot td {
    border-color: rgba(33, 37, 41, .06);
    padding-top: .95rem;
    padding-bottom: .95rem;
    vertical-align: middle;
}

.listview-wrapper .listview-table tbody tr:hover td {
    box-shadow: inset 0 1px 0 rgba(13, 110, 253, .04), inset 0 -1px 0 rgba(13, 110, 253, .04);
}

.listview-wrapper .listview-table tfoot td {
    background: rgba(248, 249, 250, .72);
}

.listview-wrapper .th-sorting a::after {
    font-family: "Font Awesome 6 Pro";
    font-size: .75rem;
    margin-left: .5rem;
    opacity: .45;
}

.listview-wrapper .th-sorting-asc a::after {
    content: "\f0de";
}

.listview-wrapper .th-sorting-desc a::after {
    content: "\f0dd";
}

.listview-wrapper .listview-footer {
    padding-top: .85rem;
    padding-bottom: .85rem;
}

.listview-wrapper .listview-actions .dropdown-menu {
    border-color: rgba(33, 37, 41, .08);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .09);
}

.listview-wrapper .listview-actions .dropdown-divider {
    border-top-color: rgba(33, 37, 41, .08);
}

.listview-wrapper .placeholder {
    margin-bottom: 0;
}

.listview-wrapper pre.td-json {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.listview-wrapper .table-responsive {
    overflow-y: visible;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.listview-wrapper .inline-edit-text.is-empty[contenteditable="true"] {
    position: relative;
}

.listview-wrapper .inline-edit-text.is-empty[contenteditable="true"]::before {
    content: attr(data-empty-text);
    position: absolute;
    top: 50%;
    left: .75rem;
    transform: translateY(-50%);
    color: var(--bs-secondary-color);
    opacity: .65;
    pointer-events: none;
}

@media (max-width: 767px) {
    .listview-wrapper {
        border-radius: 1rem;
    }

    .listview-wrapper .listview-toolbar,
    .listview-wrapper .listview-footer {
        padding-top: .85rem;
        padding-bottom: .85rem;
    }

    .listview-wrapper .listview-table tbody td,
    .listview-wrapper .listview-table tfoot td {
        padding-top: .8rem;
        padding-bottom: .8rem;
    }
}


