#wc-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.85); /* slight transparency */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-loader-box {
    text-align: center;
    font-family: Arial, sans-serif;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #e5e7eb;
    border-top: 6px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

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

.wc-loader-box p {
    margin-top: 15px;
    font-size: 16px;
    color: #111;
}
