/* ==========================================================
   Force Splash Logo Visibility
   ==========================================================
   بنستهدف صورة الـ splash بتاعتنا بالـ src نفسه (مش بـ id/class)
   عشان الحل يفضل شغال حتى لو الـ markup اتغيّر بين نسخ فرابي.
   بنفرض الظهور والمقاس على الصورة نفسها، وكمان على أي عنصر أب
   ليه id أو class فيها كلمة splash، لأن المشكلة ممكن تكون إن
   حاوية الصورة نفسها (مش الصورة) هي المخفية.
*/

img[src*="logistics-logo.svg"] {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    position: relative !important;
    z-index: 999999 !important;
}

[id*="splash"],
[class*="splash"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}
