.filter-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.filter-tag:hover {
    /*background: #dee2e6;*/
    background: linear-gradient(135deg, #667eea 0%, rgb(82, 75, 162) 100%);

}

.filter-tag .remove-filter {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
}

.filter-tag .remove-filter:hover {
    opacity: 1;
    /*color: #dc3545;*/
    color: #ffffff;
}

.remove-filter {
    cursor: pointer;
    font-weight: bold;
    padding: 0.1rem 0.3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}

.remove-filter:hover {
    /*background: rgba(255, 255, 255, 0.3);*/
    background: rgb(255, 1, 86);
}

/*    FOR LAST FILTER DESIGN    */

/* Custom styles for better visual hierarchy */
.bg-light.rounded {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid #dee2e6 !important;
}


/* Ensure consistent heights */

/* Better spacing for mobile */
@media (max-width: 768px) {
    .col-sm-6 {
        margin-bottom: 1rem;
    }
}

/* Location filter specific styles */
.location-nearme {
    font-weight: 600;
    color: #0d6efd;
}

.location-nearme::before {
    content: "📍 ";
}

/* Quick location buttons */
.btn-location-quick {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

/* Active filter badges */
.filter-badge {
    font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-filter-mobile {
        margin-bottom: 1rem;
    }

    .quick-locations {
        flex-wrap: wrap;
    }
}