/* loader.css */

/* تغطية الشاشة بالكامل أثناء التحميل */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* خلفية بيضاء شفافة قليلاً */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* تصميم مؤشر التحميل (spinner) */
.spinner {
  border: 8px solid #f3f3f3; /* اللون الفاتح للخلفية */
  border-top: 8px solid #204079; /* اللون الأساسي (يمكنك تغييره) */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1.5s linear infinite;
}

/* حركة الدوران للمؤشر */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
