body {
    margin: 0;
    padding: 0;
}

body, td, select, input, textarea {

}

select:focus,
input:focus,
textarea:focus {
    box-shadow: none !important;
}

pre {
    display: block;
    margin: 10px;
    padding: 10px;
    overflow: auto;
    font-size: .875em;
    position: relative;
    z-index: 10000;
    font-family: monospace;
    border: 1px dashed #ff5b5b;
    background-color: #f1f1f1;
}

main {
    min-height: 600px;
}

.page-link:focus {
    box-shadow: none;
}

.w-1px {
    width: 1px !important;
}

.w-50px {
    width: 50px !important;
}

.font-size-10 {
    font-size: 10px;
}

.font-size-11 {
    font-size: 11px;
}

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

.hidden {
    display: none;
}

.border-gray {
    border: 1px solid #dee2e6;
}

/*
 * navbar
 */

.navbar-brand {
    margin-left: 50px;
}

@media (min-width: 768px) {
    .navbar-brand {
        margin-left: 0;
    }
}

.navbar-toggler:hover {
    box-shadow: none;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
    right: 0;
    */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 48px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link i {
    margin-right: 5px;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #727272;
}

.sidebar .nav-link.active {
    color: #2470dc;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

.copy-clipboard {
    cursor: pointer;
}

.copy-clipboard:hover {
    color: #0a58ca;
}

.notify {
    position: fixed;
    top: 50px;
    right: 50px;
    background-color: #a0ffa0;
    padding: 10px 20px;
    border-radius: 20px;
    display: none;
}

.notify.danger {
    background-color: #ff9b9b;
}

.table-responsive .position-relative .form-select {
    background-position: right 0.35rem center;
}

.modal-body pre {
    margin: 0;
    z-index: auto;
    border: 0;
    text-wrap: initial;
}

.modal-body pre .json-key {
    color: brown;
}

.modal-body pre .json-value {
    color: navy;
}

.modal-body pre .json-string {
    color: olive;
}