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

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

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

/*
 * Hide the "Authorize" button and its wrapper. Security review flagged the
 * interactive OAuth flow as a concern; we still ship the OpenAPI securitySchemes
 * and per-operation `security` metadata so the documented auth requirements
 * remain visible in each endpoint's page — only the interactive control is
 * suppressed.
 */
.swagger-ui .auth-wrapper,
.swagger-ui .authorization__btn,
.swagger-ui .btn.authorize {
    display: none !important;
}
