:root {
    --custom: #191970;
}
html, body, .body-row{
    height: 100%;
    width: 100%;
}
a{
    text-decoration: none;
    color: inherit;
}
a:hover{
    color:inherit;
}
.bg-custom{
    background-color: midnightblue;
}
.bg-gray{
    background-color: gray;
}
.bg-lightgray{
    background-color: lightgray;
    border: gray;
}
#canvas{
    width: 95%;
    height: 100%;
    padding: 0;
    margin: 0;

}
.message{
    border-radius: 5px;
    opacity: 75%;
    margin-top: 5px;
    margin-bottom: 15px;
    height: 4rem;
    padding: 1rem;
}
.error{
    background-color: darkred;
    color: antiquewhite;
}
.success{
    background-color: darkolivegreen;
    color: antiquewhite;
}
.warning{
    background-color: darkkhaki;
    color: black;
}
.debug{
    background-color: gray;
    color: black;
}
.info{
    background-color: lightsteelblue;
    color: black;
}
.selectorlink{
    color: antiquewhite;
}
.working-body{
    height: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 4em;
}
.left-panel{
    width: 100%;
    height: 100%;
    padding:0;
    list-style-type: none;
    overflow: scroll;
}
.left-panel-section{
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    margin: 0;
    background-color: midnightblue;
    text-align: center;
}

.left-panel-item{
    padding: 0.5em;
    width: 100%;
    margin: 0;
    font-size: 0.75em;
    text-wrap: avoid;
}
.left-panel-item:hover{
    background-color: lightsalmon;
}
.left-panel-link:hover{
    text-decoration: none;
}
.selected{
    background-color: sienna;
    color: white;
}
#title-bar{
    height: 4em;
}
.canvas-item:hover{
    background-color: lightsteelblue;
}
.no-transition.collapsing{
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.01s;
  transition-duration: 0.01s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;

}
.qry_layout_item{
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 15px;
    padding-bottom: 15px;

}
.preformat{
    margin-top: 10px;
}
.row-striped:nth-of-type(odd){
  background-color: #fefefe;
}

.row-striped:nth-of-type(even){
  background-color: lightslategray;
}

.union-definition{
    border-left: solid black;
}
.union-definition:first-child, .union-definition:last-child{
    border-left: none;
}

