/**
 * BCE Advanced Filters - Component: Active Filters Bar
 */

.bce-active-filters-bar-wrapper {
    margin-bottom: 20px;
    padding: 10px 0;
}

.bce-active-filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.bce-active-filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #f5f5f5; /* Light gray background like the image */
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 4px; /* Slightly rounded corners like the image */
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bce-active-filter-chip:hover {
    background-color: #e9e9e9;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bce-remove-filter-icon {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.bce-active-filter-chip:hover .bce-remove-filter-icon {
    color: #000;
}

.bce-clear-all-filters {
    font-size: 14px;
    color: #007bff; /* Blue color like the image */
    text-decoration: none;
    margin-left: 5px;
}

.bce-clear-all-filters:hover {
    text-decoration: underline;
    color: #0056b3;
}