.nausys-active-filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 4px 0;
    float: left;
    max-width: calc(100% - 200px);
        margin-left: auto;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0f4f8;
    border: 1px solid #d0d7de;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
    white-space: nowrap;
    cursor: default;
    transition: background-color 0.2s, border-color 0.2s;
}

.active-filter-tag:hover {
    background: #e2e8f0;
    border-color: #b0b8c0;
}

.remove-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 2px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.remove-filter:hover {
    background: #c0392b;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .nausys-active-filters {
        max-width: 100%;
        float: none;
        margin-bottom: 8px;
    }
}

@media (max-width: 767px) {
    .nausys-active-filters {
        gap: 4px;
    }

    .active-filter-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}
