/* Original styles for full-screen spinner */
.custom-spinner-component-container {
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  position: fixed; /* Use fixed positioning */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Make the container take up the full height */
  background-color: rgba(255, 255, 255, 0.7); /* Optional: semi-transparent background */
  z-index: 1000; /* Ensure the spinner is on top of other content */
}

/* New styles for container-specific spinner */
.custom-spinner-container-relative {
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 100;
}

.spinner-border {
  width: 5rem;
  height: 5rem;
}

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