/* Center the spinner container */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full-screen height */
    background-color: #f0f2f5; /* Light background */
    width: 100%;
  }
  
  /* Spinner styles */
  .spinner {
    border: 8px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-left-color: #4f46e5; /* Darker border on one side */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1.2s linear infinite; /* Spinning animation */
  }
  
  /* Animation for the spinner */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  