.filters-sidebar {
    /* float: left; */
    width: 250px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    margin-right: 20px;
  }
  
  .filters-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
  }
  
  .filter-section {
    margin-bottom: 15px;
  }
  
  .filter-section-empty {
    color: #999;
    font-size: 12px;
    font-style: italic;
  }
  
  .attributes-filter {
    max-height: 500px;
    overflow-y: auto;
  }
  
  .attribute-group {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .attribute-group-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 13px;
    color: #333;
  }
  
  .attribute-count {
    color: #999;
    font-size: 11px;
    font-weight: normal;
  }
  
  .attribute-values {
    padding-left: 5px;
  }
  
  .attribute-value-label {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    font-size: 12px;
    cursor: pointer;
    padding: 3px 0;
    overflow: hidden;
  }
  
  .attribute-checkbox {
    margin-right: 8px;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .attribute-value-name {
    color: #333;
    /* flex: 1; */
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .attribute-value-count {
    color: #999;
    font-size: 11px;
    margin-left: 5px;
    flex-shrink: 0;
  }
  
  .clear-filters-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
  }
  
  .clear-filters-btn {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
  }
  
  .clear-filters-btn:hover {
    background: #5a6268;
  }