form .form-checkbox label:before {
    content: none;
}

form .form-checkbox label:after {
    content: none;
}

form .form-checkbox {
    background-color: white;
}

form .form-type-checkbox label:before{
    background-color: white;
    height: 20px;
    width: 20px;
    border-radius: 4px;
}

form .form-type-checkbox label:after{
    left: 1px;
    background-color: #0058A0;
    height: 20px;
    width: 20px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
}

/* New styles to set checkbox appearance when disabled */
form .form-type-checkbox input:disabled + label:before {
    background-color: rgb(230, 230, 230); /* Gray background for disabled checkbox */
    border: 1px solid rgb(230, 230, 230); /* Optional: border for visual clarity */
}

form .form-type-checkbox input:disabled + label:after {
    background-color: rgb(230, 230, 230); /* Gray checkmark or box when disabled */
    color: rgb(230, 230, 230); /* Lighter text color for visibility */
}