/* Custom styles for Swagger UI authentication */
.swagger-ui .auth-container {
    padding: 20px;
    border-radius: 4px;
    background-color: #f7f7f7;
}

.swagger-ui .auth-container .auth-btn-wrapper {
    text-align: center;
    margin-top: 10px;
}

.swagger-ui .auth-container input[type="text"], 
.swagger-ui .auth-container input[type="password"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
}

.swagger-ui .auth-container .errors-wrapper {
    margin-top: 10px;
}

/* Make the authorize button more prominent */
.swagger-ui .authorize {
    /*background: #49cc90 !important;
    border-color: #49cc90 !important;*/
}

/* Add some spacing and styling to security scheme descriptions */
.swagger-ui .auth-container .wrapper {
    margin-bottom: 15px;
}

.swagger-ui .auth-container h4 {
    color: #3b4151;
    margin-bottom: 10px;
}