/* --- استایل‌های صفحه قوانین --- */

/* 1. آیتم قانون */
.term-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.term-item:hover {
    background-color: #fcfcfc;
    border-color: #f56614; /* نارنجی شدن بردر در هاور */
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* 2. شماره قانون */
.term-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: #fff4ed; /* نارنجی خیلی روشن */
    color: #f56614; /* رنگ نارنجی */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-left: 15px; /* فاصله از متن (در حالت RTL) */
    font-size: 14px;
    border: 1px solid rgba(245, 102, 20, 0.2);
}

/* 3. رنگ‌بندی تعاریف */
.text-orange { color: #f56614 !important; }

/* 4. تنظیمات عمومی */
.lh-lg { line-height: 2.2 !important; }
.text-justify { text-align: justify; }