/*
    * This CSS hides the "Client Secret" field in the authorization modal of the API documentation interface.
    * The field is not necessary for the authorization code flow and can be confusing for users.
*/
.auth-container .wrapper:has(label[for="client_secret_authorizationCode"]) {
    display: none;
}
