 
    /* File: public\css\banking-filters.css */
    
    /* Container Layout */
    .active-filters-container {
        margin-bottom: 24px;
        padding: 16px 20px;
        background: #f8f9fa; 
        border: 1px solid #e9ecef;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Header with "Clear All" */
    .active-filters-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .clear-all-link {
        color: #dc3545; 
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        transition: color 0.2s;
    }
    .clear-all-link:hover {
        text-decoration: underline;
        color: #a71d2a;
    }

    /* The Chips Wrapper */
    .active-chips-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* The Chip Itself */
    .filter-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1px solid #dfe1e5;
        padding: 6px 12px;
        border-radius: 20px; 
        font-size: 0.9rem;
        font-weight: 500;
        color: #212529;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }

    .filter-chip:hover {
        background: #f1f3f5;
        border-color: #adb5bd;
        color: #000;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    }

    /* The X Icon */
    .chip-remove {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #868e96;
        transition: color 0.2s;
    }

    .filter-chip:hover .chip-remove {
        color: #dc3545;
    }

