.filters-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.filters-section  .mb-4{
    border-bottom: 1px solid #ddd;
}

.quick-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.quick-select .btn-outline-secondary {
    font-size: 0.875rem;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: #fff;
}

.quick-select .btn-outline-secondary.active {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.range-slider {
    margin-bottom: 15px;
}

.range-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 5px;
}

.btn-link {
    color: #6c757d;
    text-decoration: none;
}

.form-label i {
    margin-right: 5px;
}

.collapse {
    transition: all 0.2s ease;
}

.comparison-table {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 0.9em;
    position: relative;
    cursor: pointer;
    user-select: none;
}

table th.sorted-asc::after,
table th.sorted-desc::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

table th.sorted-asc::after {
    border-bottom: 6px solid #666;
}

table th.sorted-desc::after {
    border-top: 6px solid #666;
}

.provider-logo {
    max-height: 20px;
    max-width: 100px;
    margin-top: 5px;
    float:left;
    padding-right: 10px;
}

.price-highlight {
    color: #28a745;
    font-weight: bold;
}

.discount-badge {
    background-color: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 5px;
}

.view-offer-btn {
    min-width: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filters-section {
        margin-bottom: 20px;
    }
    
    .comparison-table {
        font-size: 0.9em;
    }
}