/*
 ============================================================
 Legal Assistant Platform
 Authored & Architected by: 
    Hany Awad Farag Gerges
 All rights reserved © 2026
 ============================================================
*/



.share-tooltip {
    position        : absolute;
    bottom          : calc(100% + 8px);
    right           : 0;
    min-width       : 140px;
    padding         : 6px 14px;
    border-radius   : 6px;
    font-size       : 13px;
    font-family     : 'Tajawal', sans-serif;
    font-weight     : 500;
    white-space     : nowrap;
    pointer-events  : none;
    z-index         : 9999;
    text-align      : center;
    direction       : rtl;

    /* اللون الافتراضي — نجاح */
    background      : #1a3a52;
    color           : #e8c87a;
    border          : 1px solid #2d5573;
    box-shadow      : 0 4px 16px rgba(0,0,0,.25);

    /* Animation */
    opacity         : 0;
    transform       : translateY(4px);
    transition      : opacity .25s ease, transform .25s ease;
}

/* السهم الصغير */
.share-tooltip::after {
    content         : '';
    position        : absolute;
    top             : 100%;
    right           : 18px;
    border          : 6px solid transparent;
    border-top-color: #1a3a52;
}

/* حالة الخطأ */
.share-tooltip.share-tooltip-error {
    background      : #5c1a1a;
    color           : #f5c6cb;
    border-color    : #8b2e2e;
}
.share-tooltip.share-tooltip-error::after {
    border-top-color: #5c1a1a;
}

/* إظهار */
.share-tooltip.share-tooltip-visible {
    opacity         : 1;
    transform       : translateY(0);
}
