.wp-custom-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255 255 255 / 70%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-custom-loader {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--bs-primary);
    border-radius: 50%;
    animation: wp-spin 1s linear infinite;
    display: inline-block;
}

@keyframes wp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}