/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* Container must be relative for absolute positioning of loader */
.woocommerce-MyAccount-content {
    position: relative;
    transition: opacity 0.3s ease;
    min-height: 200px; /* Prevent collapse */
}

/* The Loading State */
.woocommerce-MyAccount-content.is-loading {
    opacity: 0.6;
    pointer-events: none; /* Prevent clicks while loading */
}

/* The Spinner */
.woocommerce-MyAccount-content.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db; /* Change to your brand color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

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