
/* System UI font stack https://medium.design/system-shock-6b1dc6d6596f */
body {
    font-family: Consolas, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
/* Add pointer for buttons, removed in BS4 - https://www.reddit.com/r/webdev/comments/5qx6zd/bootstrap_4_removes_hand_cursor_on_buttons/ */
button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

/* Nav link padding */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .7rem;
        padding-left: .7rem;
    }
}

.container {
    max-width: 1000px;
}
a {
    color: #333;
}
nav {
    margin-bottom: 25px;
}

.bold {
    font-weight: bold;
}
.main {
    padding-bottom: 50px;
}
.bg-green {
    background-color: #dff0d8;
}
.bg-red {
    background-color: #f2dede;
}
.bg-orange {
    background-color: #fcf8e3;
}
.badge-green {
    background-color: #45A15A;
}
.badge-orange {
    background-color: #e6c255;
}
.badge-red {
    background-color: #E0626E;
}

/* Buttons */
.btn-primary {
    background-color: #337ab7;
    border-color: #2e6da4;
}
.btn-primary:hover {
    background-color: #286090;
    border-color: #204d74;
}
.header-button {
    float: right;
    margin-right: 4px;
}

pre {
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Tables */
tr.inactive {
    font-style: italic;
    opacity: 0.7;
}
td {
    min-height: 22px;
}

/* Hover styles ---------------------------------------------------------*/
.host span {
    color: #FFF;
}
.host:hover span {
    color: #AAA;
}

/* DNS ------------------------------------------------------------------*/
.container-dns {
    max-width: 1200px;
}
.dns-table {
    display: grid;
    grid-template-columns: 80px 300px 500px 80px 80px;
    gap: 8px 10px;
    font-size: 14px;
}
.wrap {
    max-width: 500px;
    overflow-wrap: break-word;
}
