/* Putting a spinner on top of content for loading */
.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7); /* Slight background tint */
    z-index: 2000; /* Ensure it is above other content */
}
