﻿#proplist-wrapper {
    position: relative;
    height: 100vh; /* Make sure the parent takes the full screen height */
}

#proplist-loader.d-none {
    display: none !important;
}

#proplist-loader {
    position: fixed; /* Fix it to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Make sure it's on top */
}

    #proplist-loader .loader-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(1px);
    }

    #proplist-loader .loader-spinner {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 4px solid rgba(0, 0, 0, 0.15);
        border-top-color: #2E7D32;
        animation: spin 0.9s linear infinite; /* Ensure this is applied correctly */
        z-index: 11;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
