/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.search-history {
  margin: 20px 0;
}

.search-history h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.search-history-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #f1f1f1;
  border-radius: 20px;
  font-size: 14px;
}

.search-chip a {
  text-decoration: none;
  color: #333;
}

.search-chip .remove-chip {
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #666;
}

.search-chip .remove-chip:hover {
  color: #e60023;
}

.clear-all-chips {
  margin-top: 15px;
  padding: 6px 14px;
  background: #e60023;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.clear-all-chips:hover {
  background: #c4001c;
}

.search-history-chips {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.search-chip {
    background-color: #f1f1f1;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-chip:hover {
    background-color: #0073e6;
    color: white;
}

