    .buxtons-checkbox {
        display: inline-block;
        position: relative;
        padding-left: 30px; 
        cursor: pointer;
    }

    .buxtons-checkbox input {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        cursor: pointer;
    }

    .buxtons-checkbox:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 20px; 
        height: 20px; 
        border: 1px solid #333; 
        background-color: #fff; 
    }

    .buxtons-checkbox:after {
        content: "\2713"; /* Unicode checkmark character */
        position: absolute;
        left: 5px; 
        top: 1px; 
        font-size: 16px; 
        color: #333; 
        visibility: hidden;
    }

    .buxtons-checkbox input:checked + .buxtons-checkbox:before {
        background-color: #4CAF50; 
        border-color: #4CAF50; 
    }

    .buxtons-checkbox input:checked + .buxtons-checkbox:after {
        visibility: visible;
    }

	.buxtons_personal_prices_checkbox_container {
    background-color: #F4F4F4;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    padding: .4em;
	}

	.fly-cart-footer .buxtons_personal_prices_checkbox_container {
    display: none;
	}

    .personal-price-explainer {
    font-size: .75em;
    opacity: .8;
    }

    span.bpp_tax_suffix {
        display: flex;
        font-size: .75em;
        line-height: normal;
    }

    .woocommerce-mini-cart-item span.bpp_tax_suffix {
        display: inline; 
        margin-left: .4em;
    }

    .buxtons-loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .buxtons-loading-gif {
        width: 50px;
        height: 50px;
    }