/**
 * Gridify by ACe
 */
.page-content section {
    display: grid;
    grid:
  'domain domain domain domain domain link'
  'xpath xpath xpath xpath xpath link';
    justify-content: space-between;
}

section p {
    margin: 5px 0;
}

.page-content section + section {
    margin-top: 16px;
}

section p:last-child {
    grid-area: link !important;
    align-items: center;
    margin-left: 24px;
    padding: 0 0 0 16px;
    border-left: 1px solid #ddd;
}

section p:last-child a {
    display: inline-grid;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 4px;
    background-color: #2b6481;
    color: #fff;
    text-decoration: none;
}

section p:last-child a:hover {
    background-color: #295E7A;
}

/**
 * blame ACe
 */
section p:nth-child(2), section pre {
    grid-area: xpath;
}