.spinnerContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full screen */
    background-color: #f0f0f0; /* Subtle background */
  }
  
  .spinner {
    border: 6px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-left-color: #3498db; /* Accent color */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  