.app-loader {
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: #f5f7f7; /* خلفية هادئة */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}

.app-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* الدائرة */
.app-loader-spinner {
  border: 5px solid #e6ecec;
  border-top: 5px solid #02343a; /* اللون الأساسي */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* اللوقو داخل الدائرة */
.app-loader-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  position: absolute;
}

/* النص */
.app-loader-text {
  color: #02343a;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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