
.hidden {
    display: none!important; /* أو أي خصائص أخرى تجعله غير مرئي */
}
/* Preloader Style */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: black; /* يمكن تغييره حسب الحاجة */
    display: flex; /* لضمان أن العنصر يتم عرضه بشكل مركزي */
    justify-content: center;
    align-items: center;
    
}

#status {
    width: 200px;
    height: 200px;
    background-image: url('path-to-your-preloader-image.gif');
    background-repeat: no-repeat;
    background-position: center;
    object-fit: contain;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

