The CSS box model describes how the parts of a CSS box fit together and the size of the box. What is the actual width of the following box's visible part under the standard box model?
box {
width: 200px;
padding: 10px;
margin: 0 15px;
border: 2px 5px;
}