.methods h4 a {
    color: #444;
    text-decoration: none;
}

.methods h4 {
    padding-bottom: 5px;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.methods ul {
    list-style: none;
    padding: 0;
}

.methods li {
    padding: 8px;
    border-radius: 4px;
    margin: 10px;
}

.methods .http-method {
    color: white;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
}

.methods .get {
    background-color: rgba(15, 106, 180, 0.05);
    border: 1px solid #0f6ab4;
}

.methods .get .http-method {
    background: #0f6ab4;
}

.methods .post {
    background-color: rgba(16, 165, 74, 0.05);
    border: 1px solid #10a54a;
}

.methods .post .http-method {
    background: #10a54a;
}

.methods .put {
    background-color: rgba(197, 134, 43, 0.05);
    border: 1px solid #c5862b;
}

.methods .put .http-method {
    background: #c5862b;
}

.methods .delete {
    background-color: rgba(164, 30, 34, 0.05);
    border: 1px solid #a41e22;
}

.methods .delete .http-method {
    background: #a41e22;
}

.methods li a {
    color: #444;
    text-decoration: none;
}

.descriptions h1 {
    margin-top: 40px;
}

.descriptions h4 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0;
}

.descriptions hr {
    margin: 30px 0;
}