  /* Search box */
.search-box.form-group {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
}

input#custom-search {
    padding: 8px 20px 8px 10px;
    border-color: #ccc;
    height: auto;
}

.dt-length {
    float: left;
}

div.dt-container select.dt-input {
    margin-right: 5px;
}

.dt-info {
    float: right;
}

/* Sort Option */
#sort-controls {
    display: inline-block;
    float: right;
}

    #sort-controls select {
        padding: 4px 8px;
        font-size: 14px;
        border-color: #ccc;
    }


/* Filter Tag block */
.filter-tag {
    display: inline-block;
    border: .5px solid #ccc;
    padding: 0 5px;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.5;
}

    .filter-tag button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 14px;
    }

button#clear-filters {
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    color: red;
    line-height: 1.5;
}

.filter-tag:hover {
}

button#clear-filters:hover,
.filter-tag:hover {
    background-color: red;
    color: white;
    border: .5px solid #ccc;
    border-radius: 4px;
}

.dt-search {
    display: none;
}


/* Filter Block */
#side-filter-container {
    border: .5px solid #ccc;
    padding: 10px;
    border-radius: 8px;
}

.panel.panel-default {
    border: none;
    /* border-radius: 4px; */
    box-shadow: none;
    /* border-bottom: .5px solid #e5e5e5; */
}

.panel-collapse .panel.panel-default {
    border: none !important;
    box-shadow: none;
}

    .panel-collapse .panel.panel-default .panel-heading {
        border: none !important;
    }

.panel-default .panel-heading,
.panel-default > .panel-heading {
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 3px 0;
}

    .panel-default > .panel-heading + .panel-collapse > .panel-body {
        padding: 0 0 0 8px;
    }

.panel.panel-default .panel-heading label {
    font-size: 14px;
    margin: 0;
}

.panel.panel-default .panel-heading input[type="checkbox"] {
    transform: scale(1.5);
    accent-color: red;
    margin-left: 4px;
}

.panel-title,
h4.panel-title a {
    margin-bottom: 0;
    font-size: 16px !important;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 350ms ease;
    background: #f5f5f5;
    padding: 2px 3px;
    border-radius: 4px;
}

    h4.panel-title a.collapsed::after {
        font-family: "Font Awesome 6 Free";
        content: "\f107";
        transform: rotate(0deg);
        transition: all 350ms ease;
    }

    h4.panel-title a::after {
        font-size: 13px;
        margin-right: 5px;
        font-family: "Font Awesome 6 Free";
        content: "\f107";
        transform: rotate(-180deg);
        transition: all 350ms ease;
    }

.panel-group {
    margin-bottom: 0;
}

/* Table  */
/* Base table setup */
#yourDataTable {
    border-collapse: collapse;
    width: 100%;
}

    #yourDataTable thead,
    #yourDataTable colgroup {
        display: none;
        /* hide table header */
    }

    #yourDataTable tbody tr {
        display: flex;
        flex-direction: column;
        /* stack cells vertically */
        border: .5px solid #ccc;
        border-radius: 8px;
        margin: 0 0 1.5rem 0;
        /* spacing between cards */
        padding: 1rem;
        background: #fff;
        width: 100%;
        /* full width */
        box-sizing: border-box;
    }

        #yourDataTable tbody tr:nth-child(1) {
            margin-top: 25px;
        }


    #yourDataTable tbody td {
        display: block;
        padding: 0.5rem 0;
        width: 100%;
        background: none !important;
        border: none;
        box-shadow: none;
    }

        #yourDataTable tbody td:nth-child(2) {
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            font-size: 14px;
            line-height: 1.5;
        }

        #yourDataTable tbody td:nth-child(4),
        #yourDataTable tbody td:nth-child(5) {
            display: inline-block;
            width: 50%;
            box-sizing: border-box;
            padding-right: 1rem;
        }

        #yourDataTable tbody td h3 {
            margin: 0;
        }

ul.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

    ul.category-list li {
        border: .5px solid #ccc;
        font-size: 10px;
        padding: 0 5px;
        margin-right: 5px;
        border-radius: 4px;
    }

.bottom-control {
    text-align: center;
    margin: 15px;
}

div.dt-container .dt-paging .dt-paging-button.current {
    border-radius: 50px;
}

div.dt-container .dt-paging .dt-paging-button:hover {
    border-radius: 50px;
}
