#try-container {
    width: 100%;
}

#try-container #requestAndResponse{
margin-top: 40px;
}

#try-container tr td {
    width: 50%;
    vertical-align: top;
}


#try-container tr td:first-child {
    padding-right: 20px;
}

#try-container tr td:last-child {
    padding-left: 20px; 
    max-width: 50%;
}

#try-container #request pre {
    min-height: 150px;
    max-height: 500px;
    overflow-y: scroll;
    width: 90%;
    overflow-x: scroll;
    border: 1px solid #a1a1a1;
    border-radius: 4px;
    padding: 10px;
}

#try-container #results pre {
    min-height: 150px;
    max-height: 500px;
    overflow-y: scroll;
    width: 90%;
    overflow-x: scroll;
    border: 1px solid #a1a1a1;
    border-radius: 4px;
    padding: 10px;
}

@media screen and (max-width: 1024px) {
    #try-container #results pre {
        width: 400px;
    }
    
}

@media screen and (max-width: 660px) {
    #try-container #results pre {
        width: 100%;
    }
    
}

