html {
    box-sizing: border-box;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background: #fafafa;
}

/* Hides Links column altogether. We don't use links functionality of OpenAPI */
.response-col_links {
    display: none;
}

/* Styles newly introduced custom component */
.response-control-media-type__single-option {
    font-size: 14px;   /* font size matches example dropdown value */
    line-height: 30px; /* line height matches example dropdown height */
    font-weight: bold;
}

/* Hides "Controls Accept header" message for brevity */
.response-control-media-type__accept-message {
    display: none;
}

/* Remove min-height on a smaller response examples */
.swagger-ui .highlight-code > .microlight {
    min-height: initial;
}
