/* متن سمت راست و عدد در دایره سمت چپ */
.widget-cats ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    direction: rtl;          /* متن فارسی درست نمایش داده شود */
    text-decoration: none;   /* حذف زیرخط لینک */
}

/* دایره آبی دور عدد */
.widget-cats ul li a span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    order: -1;                /* عدد سمت چپ */
    width: 24px;              /* قطر دایره */
    height: 24px;             /* قطر دایره */
    background-color: #007bff; /* رنگ آبی دایره */
    color: white;             /* رنگ عدد داخل دایره */
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 50%;       /* گرد کردن دایره */
}
