
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
#preloader img{
    object-fit: contain;
}
.curtain-strips {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* خلف الصورة */
  display: flex;
  /* يمكن إضافة ستايل الشرائح هنا */
}

.curtain-strips div {
  flex: 1;
  background: #ffff; /* لون الشرائح */
  margin: 0 2px; /* مسافة بين الشرائح */
 
}

#status {
  position: relative;
  z-index: 2; /* فوق الشرائح */
  max-width: 150px;
  max-height: 150px;
}

