/* table */

.widefat td {
    font-size: 12px;
}

.lhr-listing tbody tr:nth-child(even) td {
    background-color: #f8f8f8;
}

.widefat .field-status-code,
.widefat .field-runtime,
.widefat .field-date {
    width: 100px;
}

.widefat .field-args,
.widefat .field-response {
    display: none;
}

.widefat .field-url {
    max-width: 500px;
}

.widefat .field-url div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.widefat .field-runtime.warn {
    background-color: rgba(255, 235, 59, 0.2);
}

.widefat .field-runtime.error {
    background-color: rgba(244, 67, 54, 0.2);
}

.http-request-args,
.http-response {
    max-height: 300px;
    font-family: monospace;
    white-space: pre;
    overflow: auto;
}

/* pager */

.lhr-pager {
    padding: 10px 0;
    text-align: right;
}

.lhr-page {
    display: inline-block;
    padding: 0px 4px;
    margin-right: 6px;
    cursor: pointer;
}

.lhr-page.active {
    font-weight: bold;
    cursor: default;
}

/* grid */

.wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 10px;
}

/* modal */

.media-modal,
.media-modal-backdrop {
    display: none;
}

.media-modal.open,
.media-modal-backdrop.open {
    display: block;
}

.media-frame-title,
.media-frame-content {
    left: 0;
}

.media-frame-router {
    left: 10px;
}

.media-frame-content {
    top: 48px;
    bottom: 0;
    overflow: auto;
}

.button-link.media-modal-close {
    cursor: pointer;
    text-decoration: none;
}

.button-link.media-modal-close.prev {
    margin-right: 60px;
}

.button-link.media-modal-close.next {
    margin-right: 30px;
}

.media-modal-close.prev .media-modal-icon::before {
    content: "\f342";
}

.media-modal-close.next .media-modal-icon::before {
    content: "\f346";
}

.modal-content-wrap {
    padding: 16px;
}