.gf-user-tasks-notif {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #f9f9f9, #f0f0f0);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    direction: rtl;
    font-family: inherit;
    border-right: 4px solid #ff8d02;
    transition: all 0.3s ease;
}

.gf-user-tasks-notif:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.gf-user-tasks-bell {
    width: 32px;
    height: 32px;
    margin-left: 18px;
    margin-right: 2px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.gf-user-tasks-body {
    flex: 1;
    min-width: 0;
}

.gf-user-tasks-message {
    font-size: 1.05em;
    color: #333;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.gf-user-tasks-count-num {
    background: #e42d2d;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    display: inline-block;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(228, 45, 45, 0.3);
}

.gf-user-tasks-progress {
    height: 6px;
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.gf-user-tasks-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #e42d2d, #f86b6b);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.gf-user-tasks-error {
    padding: 10px;
    background: #fff1f1;
    border-right: 3px solid #e42d2d;
    color: #e42d2d;
    border-radius: 4px;
    margin-bottom: 20px;
}
.gf-user-tasks-link {
    text-decoration: none !important;
    display: block;
    color: inherit;
    cursor: pointer;
}

.gf-user-tasks-link:hover .gf-user-tasks-notif {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.gf-user-tasks-notif {
    position: relative;  /* برای لینک پوزیشن مطلق */
}

.gf-user-tasks-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;  /* بالاتر از بقیه عناصر */
    opacity: 0;  /* شفاف */
    cursor: pointer;
}

/* حالت هاور */
.gf-user-tasks-notif:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}