/* استایل صفحه لودینگ */
#custom-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: -30px; /* تنظیم موقعیت عمودی */
}

.custom-loader-text {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
  font-family: "Yekan", sans-serif;
}

.custom-loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #3bc0ed;
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.custom-loader-logo {
  width: 200px;
  margin-bottom: 30px;
  opacity: 0.9;
}
