/* Remove all filter-related styles */

/* Filter form styling */
.filter-form {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.filter-form label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-form .form-control,
.filter-form .form-select,
.filter-form .dropdown-toggle {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    height: 42px;
    font-size: 1em;
    color: #2d3748;
    background-color: #fff;
    transition: all 0.2s ease;
}

.filter-form .form-control:focus,
.filter-form .form-select:focus,
.filter-form .dropdown-toggle:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.filter-form .btn {
    height: 42px;
    padding: 0 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.filter-form .btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.filter-form .btn-primary:hover {
    background-color: #357abd;
    border-color: #357abd;
}

.filter-form .btn-secondary {
    background-color: #f8f9fa;
    border-color: #e2e8f0;
    color: #64748b;
}

.filter-form .btn-secondary:hover {
    background-color: #e2e8f0;
    color: #2d3748;
}

/* Dropdown checklist specific styles */
.filter-form .dropdown-check-list {
    position: relative;
    width: 100%;
}

.filter-form .dropdown-check-list .dropdown-menu {
    max-height: 280px;
    overflow-y: auto;
    width: 100%;
    padding: 6px 0;
    margin-top: 4px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.filter-form .dropdown-check-list .form-check {
    margin: 0;
    padding: 6px 12px;
    display: flex;
    align-items: center;
}

.filter-form .dropdown-check-list .form-check:hover {
    background-color: #f8fafc;
}

.filter-form .dropdown-check-list .form-check-input {
    margin: 0 10px 0 0;
    width: 16px;
    height: 16px;
    border-color: #cbd5e1;
}

.filter-form .dropdown-check-list .form-check-input:checked {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.filter-form .dropdown-check-list .form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

.filter-form .dropdown-check-list .dropdown-toggle::after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid #64748b;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* Scrollbar styling */
.filter-form .dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.filter-form .dropdown-menu::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}

.filter-form .dropdown-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.filter-form .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
select.form-select {
    overflow: hidden!important;
}
select.form-select option, select.form-select option:focus, select.form-select option:checked, select.form-select option:hover, select.form-select option:active, select.form-select option:disabled {
    color:#2d3748!important;
    background: none!important;
}
@media(max-width: 767px) {
.bd-basic__pagination ul li a, .bd-basic__pagination .active {
    font-size: 12px;
}
.bd-basic__pagination ul li a {
    width: 30px;
    height: 30px;
}
}

@media(max-width: 350px) {
    .bd-basic__pagination ul li a, .bd-basic__pagination .active {
    font-size: 11px;
}
.bd-basic__pagination ul li a {
    width: 25px;
    height: 25px;
}
}