/* ===== إعلان إداري مربع يظهر في منتصف الشاشة مع صورة واسم المرسل ===== */

.global-announce{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:99999;
    direction:rtl;
    pointer-events:none;
}

/* الصندوق */
.global-announce .ga-content{
    width:300px;
    max-width:92%;
    background:linear-gradient(160deg,#4f46e5,#7c3aed);
    color:#fff;
    padding:18px 20px;
    border-radius:20px;
    box-shadow:0 6px 30px rgba(0,0,0,.35);
    display:flex;
    flex-direction:column;
    gap:12px;
    text-align:center;
    pointer-events:auto;
    animation: popupFade .35s ease;
    position:relative;
}

/* الأعلى: الصورة + الاسم + (إعلان إداري) */
.global-announce .ga-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

/* الصورة */
.global-announce .ga-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 0 10px rgba(255,255,255,.4);
}

/* الاسم + عنوان */
.global-announce .ga-who{
    font-size:15px;
    font-weight:700;
}

.global-announce .ga-label{
    font-size:12px;
    opacity:.85;
}

/* نص الإعلان */
.global-announce #ga_text{
    font-size:16px;
    line-height:1.6;
    white-space:normal;
    word-wrap:break-word;
}

/* زر الإغلاق */
.global-announce #ga_close{
    position:absolute;
    top:-10px;
    right:-10px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#00000055;
    border:none;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.global-announce #ga_close:hover{
    background:#00000070;
}

.global-announce.hidden{
    display:none;
}

/* حركة دخول جميلة */
@keyframes popupFade{
    from{
        opacity:0;
        transform:translate(-50%, -45%);
    }
    to{
        opacity:1;
        transform:translate(-50%, -50%);
    }
}