.page-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.page-loading-overlay.show {
    display: flex;
}

.page-loading-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.page-loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #d8e5d9;
    border-top-color: #198754;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    animation: page-loading-spin 0.8s linear infinite;
}

@keyframes page-loading-spin {
    to {
        transform: rotate(360deg);
    }
}
