
.load_page{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #DB4BA2;
}

.load_page img{
    width: 100px;
    animation: pulseFade 2s ease-in-out infinite;
}

/* Keyframes for fading in and out */
@keyframes pulseFade {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}


.spinner {
  width: 30px;
  height: 30px;
  border: 4px solid transparent;
  border-top: 4px solid white; /* You can change this color */
  border-right: 4px solid white;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



      /* Apply shimmer effect */
      .skeleton-loading {
        position: relative;
        overflow: hidden;
        background: #f6d2e8; /* same as your original background */
      }

      .skeleton-loading::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.4) 50%,
          rgba(255, 255, 255, 0) 100%
        );
        animation: shimmer-blink 1.5s infinite;
        z-index: 2;
      }

      @keyframes shimmer-blink {
        0% {
          left: -150%;
        }
        100% {
          left: 150%;
        }
      }

      /* Optional: prevent content from showing while loading */
      .skeleton-loading * {
        visibility: hidden;
      }