/* استایل کلمات (تگ dfn) در متن مقاله */
.dm-glossary-link {
    color: var(--dm-word-color, #2c3e50) !important;
    text-decoration: none;
    border-bottom: 2px solid var(--dm-underline-color, #3498db) !important; /* خط صاف */
    cursor: help;
    position: relative;
    font-style: normal; /* خنثی کردن ایتالیک پیش‌فرض dfn */
    transition: all 0.3s ease;
}

/* آیکون علامت سوال */
.dm-glossary-link::after {
    content: "?";
    position: absolute;
    top: -0.7em;
    right: -0.5em; /* مناسب برای سایت‌های فارسی */
    font-size: 0.65em;
    color: var(--dm-underline-color, #3498db);
    background: #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: var(--dm-icon-display, none);
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dm-underline-color, #3498db);
    font-family: Arial, sans-serif;
    font-weight: bold;
    line-height: 1;
}

/* استایل باکس تولتیپ */
.dm-tooltip-box {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    width: 250px;
    font-size: 13px;
    line-height: 1.6;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-style: normal;
    text-align: right;
    font-weight: normal;
}

.dm-tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border: 8px solid transparent;
    border-top-color: #333;
    margin-left: -8px;
}