/* Filter Summary Styles */
#filter-summary-container {
    width: 100%;
    background: rgba(240, 240, 240, 0.95);
    border-bottom: 1px solid #ddd;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    text-align: center;
    position: relative;
    z-index: 10;
}

.filter-summary-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-summary-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.filter-summary-text {
    font-weight: 500;
    color: #333;
}

.filter-summary-clear {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 8px;
    font-size: 11px;
}

.filter-summary-clear:hover {
    color: #0056b3;
}

/* Hide when no filters active */
.filter-summary-hidden {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #filter-summary-container {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .filter-summary-content {
        flex-direction: column;
        gap: 4px;
    }
}