/* Filter Card */
.filter-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.filter-card .form-control {
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
    padding: 10px 15px;
    height: auto;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.filter-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.filter-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Pagination Modern */
.pagination {
    margin-top: 2rem;
}

.page-link {
    border: none;
    color: var(--text-dark);
    margin: 0 5px;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s;
}

.page-link:hover {
    background-color: #eee;
    color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

/* Range Slider Override */
.ui-slider-horizontal {
    height: 6px !important;
    background: #eee !important;
    border: none !important;
}

.ui-slider .ui-slider-handle {
    width: 18px !important;
    height: 18px !important;
    background: var(--primary-color) !important;
    border-radius: 50% !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    top: -6px !important;
    cursor: pointer !important;
    outline: none;
}

.ui-slider .ui-slider-range {
    background: var(--primary-color) !important;
}