/* Spinner Overlay */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Spinner */
  .spinner-wrapper {
    text-align: center;
    color: #fff;
  }
  .spinner {
    border: 4px solid #eee;
    border-top: 4px solid #3ecf8e; /* accent color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
  }
  .spinner-text {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
  }
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  