/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* --- Custom CSS for Category Filter --- */

/* Style for the parent category container */
.category-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Style for the expand/collapse toggle (+/- icon) */
.toggle-subcategories {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    padding: 0 10px;
}

/* Sub-category list styling */
.subcategory-list {
    list-style: none;
    padding-left: 25px; /* Indent sub-categories */
    display: none; /* Hide by default */
}

/* Custom Radio Button Styling (to match your checkboxes) */
.container_radio {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radiomark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
}
.container_radio:hover input ~ .radiomark {
  background-color: #ccc;
}
.container_radio input:checked ~ .radiomark {
  background-color: #444;
  border: 1px solid #444;
}
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}
.container_radio input:checked ~ .radiomark:after {
  display: block;
}
.container_radio .radiomark:after {
 	top: 5px;
	left: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}