.spinner-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
      background-color: rgba(255, 255, 255, 0.5);
    z-index: 9999;
    overflow: hidden;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of everything */
}

.spinner-container {
    /* Add your spinner container styles */
}

.content {
    /* Add styles for your main content */
    height: 100%;
    overflow-y: auto; /* Allow scrolling when loader is not displayed */
}