.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200001;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    background:white;
}

.loader {
    position:relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid #D8CFBF;
    border-top-color: #D3B783;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-container p {
    font-size: 20px;
    margin-top: 20px;
}

.croissant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: auto;
}


.loader-container.hidden {
opacity: 0;
pointer-events: none;
z-index: -1;
transition: opacity 0.5s ease-in-out;
}