/****** 0001.pro | OooOnePro | PLUS/MINUS VISIBLE FIX ******/

#oop_cls_div_cont {
    margin-bottom: 20px;
}

#oop_ul_cats {
    list-style: none;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0;
    background: #fff;
}

/* CATEGORY ITEM */
#oop_ul_cats li {
    display: block;
    font-weight: 600;
    cursor: pointer;
    border-top: 1px solid #eee;
    position: relative;
}

/* SUBCATEGORY LIST */
#oop_ul_cats ul {
    list-style: none;
    padding: 0;
    display: none;
    background: #fafafa;
}

#oop_ul_cats ul li {
    font-weight: normal;
}

#oop_ul_cats > li > ul > li:first-child {
    border-top: none;
}

/* LINKS */
#oop_ul_cats a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 10px 40px 10px 14px;
    outline: 0;
    transition: all 0.25s ease;
}

#oop_ul_cats a:hover {
    background: #f5f5f5;
    color: #000;
    padding-left: 18px;
}

/* ACTIVE / PREV ACTIVE STATES */
#oop_ul_cats .oop_cls_a_active {
    background: #333;
    color: #fff;
}

#oop_ul_cats .oop_cls_a_prev_active {
    background: #f0f0f0;
    color: #333;
}

/* ===== PLUS / MINUS ICON ===== */
/* Ensure toggle (+/-) icon stays vertically centered */
#oop_ul_cats li {
    position: relative; /* already done */
}

#oop_ul_cats .oop_cls_div_exp {
    position: absolute;
    right: 12px;
    transform: translateY(-100%);
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    display: flex;           /* flex centering fixes movement */
    align-items: center;     /* vertically center */
    justify-content: center; /* horizontally center */
}

/* Hover effect on icon */
#oop_ul_cats .oop_cls_div_exp:hover {
    border-color: #333;
    color: #333;
}

/* FIX: Always show minus clearly */
#oop_ul_cats li > .oop_cls_div_exp {
    color: #666;  /* default + color */
    background: #fff;
    border-color: #ddd;
}

/* When expanded (JS replaces + with -) */
#oop_ul_cats li > .oop_cls_div_exp:contains("−") {
    color: #fff;            /* white text for minus */
    background: #333;       /* dark background */
    border-color: #333;     /* dark border */
}

/* SUBCATEGORY LINKS */
#oop_ul_cats ul a {
    padding: 8px 40px 8px 28px;
    font-size: 13px;
    color: #777;
}

#oop_ul_cats ul a:hover {
    padding-left: 32px;
    color: #000;
}