
#custom-page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.4);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
}

#custom-page-loader .spinner {
    border: 6px solid #ccc;
    border-top: 6px solid #34845c;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

#loader-message {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: center;
    animation: fadein 0.3s ease-in;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
