body {
    margin: 0;
    height: 98vh;
}


.modal-dialog {

    width: 1000px;

    height: 600px !important;

}

.modal-content {

    width: inherit;

    height: inherit;



}

table {
    table-layout: fixed;
    display: block;
    height: 400px;
    overflow: auto;
}

tr {
    display: block;
}



td {
    min-width: 200px;
    overflow: hidden;
    word-wrap: break-word;
}

.parent-color{
    color:#5957DF;
}

#template-load-dropdown {
    overflow-y: scroll;
    height:600px;
    width:auto;

}


div.template-load-dropdown > a{
    color:#5957DF;
}


div#validationresults {
    resize: none;
    width: 770px;

    height: 458px;
    overflow: auto;
}

.editor-content {
    margin-top: 5px;
    width: 100%;
    height: 90%;
    display: flex;
}

.vertical-content {
    flex-direction: column;
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
}

.split {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 1px solid;
}

.gutter {
    cursor: e-resize;
    height: 100%;
    background: grey;
}

.gutter-vertical {
    cursor: s-resize;
    background: grey;
}

.template-area {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.template-tabs {
    flex: 0 1 auto;
}


.template-editor {
    flex: 1 1 auto;
    overflow-y: hidden;
}

.output-area {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.output-tabs {
    flex: 0 1 auto;
    padding: 5px;
}

.output-tabs-status {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;

}

.form-check {
    padding-top: 10px;
}


.output-editor {
    flex: 1 1 auto;
    overflow-y: hidden;
}

.navbar {
    padding: .3rem 1rem;
}

.h-90 {
    height: 100% !important;
}

/*.nav-link{
    color: rgb(114, 114, 114) !important;
}

.nav-link:focus {
    color: rgb(0, 0, 0) !important;
}

.nav-link:hover {
    color: rgb(0, 0, 0) !important;
}*/
.footer-font {
    font-size: 13px;
}

.font-size-6px {
    font-size: 10px;
}

.btn-outline-primary {

    border-color: #ced4da !important;
    color: #495057 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    color: #fff !important;
    border-color: #5957DF !important;
    background: #5957DF;
}


.width150pct {
    width: 150%;
}

.bg-ihx {
    background: #5957DF;
    color: white;
}

.btn-ihx {
    background: #5957DF;
    color: white;
    border: 1px solid rgb(0 0 0 / 8%);
}

.btn-ihx:focus {
    color: #fff !important;
}

.btn-ihx:hover {
    color: #fff !important;
}

.margin-left-10px {
    margin-left: 10px;
}

.margin-right-10px {
    margin-right: 10px;
}

.margin-left-right-10px {
    margin-left: 10px;
    margin-right: 10px;
}

.bg-dark .dropdown-menu {
    background: #343a40;
}

.bg-dark .nav-link {
    color: rgb(189, 189, 189) !important;
}

.bg-dark .nav-link:focus {
    color: #fff !important;
}

.bg-dark .nav-link:hover {
    color: #fff !important;
}

.bg-dark .dropdown-item,
#navbar.bg-dark .dropdown-header,
.bg-dark .nav-item {
    color: rgba(255, 255, 255, 1) !important;
}

.bg-dark .dropdown-item:hover {
    background: #212529;
}

.bg-dark .dropdown-item:focus {
    background: #212529;
}

.bg-dark .form-control {
    background: #212529 !important;
    color: #fff !important;
}

.bg-dark .close {
    color: #fff;
    text-shadow: none;
}

.underline {
    border-bottom: 1px solid #080;
}

.bg-dark .underline {
    border-bottom: 1px solid #0f0;
}

.unused-segment {
    border-bottom: 2px dotted #ff0000;
}

.banner-btn {
    display: unset;
    vertical-align: unset;
}

.CodeMirror {
    /* We force calculation on CodeMirror editor dimensions to
       ensure that they will fit their containers when resizing */

    /* Firefox */
    height: -moz-calc(100%);
    /* WebKit */
    height: -webkit-calc(100%);
    /* Opera */
    height: -o-calc(100%);
    /* Standard */
    height: calc(100%);

    /* Firefox */
    width: -moz-calc(100%);
    /* WebKit */
    width: -moz-calc(100%);
    /* Opera */
    width: -o-calc(100%);
    /* Standard */
    width: calc(100%);
}

.sticky-search {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    background-color: white; /* Optional: to ensure the background of the search bar remains white */
    z-index: 1000; /* To make sure it stays on top */
    padding: 10px; /* Optional: adjust padding as needed */
}