.category-list,
.subcategory-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 10px;
}

.toggle-subcats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #4b5320;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.category-item.open .dropdown-arrow {
    transform: rotate(180deg);
}

.subcategory-list {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}

.category-item.open .subcategory-list {
    display: block;
}

.subcategory-list li a {
    color: #777794;
    text-decoration: none;
    display: block;
    padding: 3px 0;
}

.custom-category-widget .active > a,
.custom-category-widget .category-item.active > .toggle-subcats {
    font-weight: bold;
    
}

