/* Modfolio AJAX Navigation - Loading Overlay */

#modfolio-ajax-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    min-height: 300px;
    border-radius: 12px;
}

.dark__theme #modfolio-ajax-loading {
    background: rgba(32, 32, 32, 0.85);
}

.modfolio-ajax-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e5e5;
    border-top-color: #0CCAAE;
    border-radius: 50%;
    animation: modfolio-ajax-spin 0.7s linear infinite;
}

.dark__theme .modfolio-ajax-spinner {
    border-color: #444;
    border-top-color: #0CCAAE;
}

@keyframes modfolio-ajax-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
