/* Full-screen overlay to cover the content */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fffdfa; /* Match your navbar's sticky background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

/* Loader style (a spinning ring) */
.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(183, 129, 8, 0.2); /* Light version of your theme color */
    border-top: 5px solid #DBA63B; /* Your theme color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* CSS to hide the loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}