/*
 * Styles for WooCommerce Shipping Rules
 */

/* 1. For 'disabled_threshold' rule (when subtotal is too low) */
.woocommerce-checkout-review-order-table label.disabled-shipping-option,
.cart_totals label.disabled-shipping-option {
    opacity: 0.5;
    cursor: not-allowed;
    color: #666;
}

/* 2. Generic notice text positioning */
.woocommerce-checkout-review-order-table label .shipping-rule-notice,
.cart_totals label .shipping-rule-notice {
    display: block;
    font-weight: normal;
    color: #777;
    margin-left: 1.5em; /* Indent it a bit */
}

/* 3. For 'free_shipping' rule (when subtotal is too low) */
.woocommerce-checkout-review-order-table label .shipping-free-notice,
.cart_totals label .shipping-free-notice {
    color: #8a6d3b; /* A subtle warning color */
}

/* 4. For 'free_shipping' rule (when subtotal is met) */
.woocommerce-checkout-review-order-table label .shipping-free-success,
.cart_totals label .shipping-free-success {
    color: #3c763d; /* A nice green color */
    font-weight: bold;
}