/* Style for disabled Select2 dropdowns and readonly input fields */
.select2-container--default.select2-container--disabled .select2-selection--single,
.disabled-select2 .select2-selection {
    background-color: #f2f2f2 !important; /* Lighter background */
    cursor: not-allowed !important; /* No-entry cursor */
}
.select2-container--default.select2-container--disabled .select2-selection__arrow b,
.disabled-select2 .select2-selection__arrow b {
    display: none !important; /* Hide the dropdown arrow */
}
/* Ensure the input fields also look disabled/readonly */
.woocommerce-checkout .input-text[readonly],
.woocommerce-account .input-text[readonly],
.woocommerce-checkout .input-text[disabled],
.woocommerce-account .input-text[disabled] {
    background-color: #f2f2f2 !important;
    cursor: not-allowed !important;
}