/* کانتینر اصلی ویجت */
.eah-widget-container {
    position: relative;
    padding: 30px;
    z-index: 1;
    overflow: hidden; /* برای جلوگیری از بیرون زدن واترمارک */
}

/* استایل واترمارک */
.eah-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8em;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04); /* بسیار کمرنگ */
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

/* فلکس باکس برای آیکون و متن */
.eah-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; /* یا flex-start بر اساس تنظیمات تراز */
    gap: 15px; /* فاصله بین آیکون و متن */
    flex-wrap: wrap;
}

.eah-icon {
    display: flex;
    font-size: 2em;
    color: #e74c3c;
}

.eah-title {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
    line-height: 1.2;
    /* ویژگی متن توخالی از طریق کنترل‌های المنتور اعمال می‌شود */
}

/* استایل هایلایت و SVG */
.eah-highlight {
    position: relative;
    display: inline-block;
    color: #e74c3c;
    z-index: 1;
}

.eah-svg-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: -1;
    /* انیمیشن کشیده شدن خط */
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}
