.autosuggest-container {
    position: relative;
}
.autosuggest-input {
    width: 100%;
    padding: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Include padding in width */
}
.autosuggest-suggestions {
    position: absolute;
    top: 100%; /* Position below the input */
    left: 20px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none; /* No top border, blends with input */
    border-radius: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow-y: auto;
    z-index: 1000; /* Ensure it's above other content */
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default */
}
.autosuggest-suggestions.show {
    display: block;
}
.autosuggest-suggestion-item {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.autosuggest-suggestion-item:last-child {
    border-bottom: none;
}
.autosuggest-suggestion-item:hover,
.autosuggest-suggestion-item.selected {
    background-color: #f0f0f0;
}
.autosuggest-suggestion-item .highlight {
    font-weight: bold;
    color: #007bff; 
}

.active-filters-area { 
    position: absolute;   
    min-height: 40px; 
    margin-bottom: 15px;
	gap: 10px;
}
.tag-list {
    display: flex;           
    flex-wrap: wrap;
    gap: 4px;
}
.tag {
	background-color: #e5e7ea;
    display: inline-flex;
    align-items: center;
    color: #000;
	padding-top:0px;
	padding-bottom:1px;
	padding-right:3px;
	padding-left:3px;
	margin-top: 5px;
    font-size: 11px;    
}
.tag-remove {
    border: #1a0dce;
    color: #888;
    cursor: pointer;
    font-size: 11px;
    padding-right:3px;
	padding-left:3px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tag-remove:hover {
    color: #000;
}
.button-reset.link { /* Your clear filters button style */
    background: none;
    border: none;
    color: #4400ff;
    cursor: pointer;
    font-size: 11px;
    margin-top: 10px;
    padding: 0;
    text-decoration: underline;
    display: none; /* Hidden by default, shown by JS */
}
.button-reset.link:hover {
    color: #0056b3;
}

.button-remove-all{
	margin-top: 5px;
    color: #1d16e1;
    background-color: #fff;
    padding: 2px 2px; 
    font-size: 12px;
	border: none;
}

.button-remove-all:hover {
    color: #0e06f8;
    background-color: #fff;
    padding: 2px 2px; 
    font-size: 13px; 
	border: none;
}