/* ========================================
   CHIPS DE FILTROS ACTIVOS - NO TOCAR NADA MÁS
   ======================================== */

/* Solo para el contenedor de filtros activos */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.filter-chip:hover {
    background: #333;
}

.filter-chip.active {
    background: #c00;
    box-shadow: 0 2px 4px rgba(204,0,0,0.2);
}

.filter-chip .remove-chip {
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    color: white;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s ease;
}

.filter-chip .remove-chip:hover {
    background: rgba(255,255,255,0.3);
}

.no-filters-message {
    padding: 10px 0;
}