/* ===============================
   Staff Notice – شريط ملاحظات الموظف
   =============================== */

#staffNotice {
    position: fixed;
    bottom: 20%;              /* منتصف الجزء السفلي تقريبا */
    left: 50%;                /* توسيط أفقي */
    transform: translateX(-50%);
    background: linear-gradient(180deg, #c62828, #8e0000);
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    max-width: 280px;
    z-index: 9999;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);

    /* عشان يشتغل مع الجافاسكربت اللي يغيّر display/opacity */
    display: none;            /* مخفي افتراضياً */
    opacity: 0;               /* شفاف افتراضياً */
    transition: opacity 0.4s ease;
}

#staffNoticeText {
    display: block;
    line-height: 1.6;
}
