.blueprintEditor
{
    display: grid;
    grid-template-columns: 155px auto;
    grid-template-rows: auto;
    grid-template-areas: "toolbox diagram";
    height: 100%;
    margin: 0;
    padding: 0; 
}

.zoomButtons {
    position: absolute;
    bottom: 10px;
    right: 25px;
}

.toolbox
{
    grid-area: toolbox;
    background: #f8f9fa; /*#eee;*/
    height: 100%;
    margin: 0;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    /*width: 183px;*/
    /*height: calc(100% - 10px);*/
}
   

.toolboxItems, .lightModeToolboxItems, .darkModeToolboxItems {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}

.toolbox hr {
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: default;
}
.toolbox span {
    cursor: default;
}
 /*   .toolboxItems span {
        margin-bottom: 10px;
    }*/

.groupOfUserWidgetToolboxItems
{
    display: flex;
    gap: 3px;
}

.toolboxItem
{
}
    .toolboxItem:before
    {
        /*This is for the draggable indicator dots*/ 
        content: '.';
        position: absolute;
        left: 20px;
        font-size: 20px;
        line-height: 25px;
        color: #383838;
        text-shadow: 0 5px #383838, 0 10px #383838, 5px 0 #383838, 5px 5px #383838, 5px 10px #383838, 10px 0 #383838, 10px 5px #383838, 10px 10px #383838;
    }

.diagram-container
{
    grid-area: diagram;
    background: #0094ff;
    height: 100%; 
}

.basicWidget
{
    /*  reset bootstrap styles that break things */
    box-sizing: content-box;
} 

 
.tooltip-text
{
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 100px;
    color: white;
    font-size: 12px;
    background-color: #192733;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
}

.hover-text:hover .tooltip-text
{
    visibility: visible;
}

.hover-text
{
  /*  position: relative;
    display: inline-block;
    margin: 40px;
    font-family: Arial;
    text-align: center;*/
}

/*#top {
    top: -40px;
    left: -50%;
}

#bottom {
    top: 25px;
    left: -50%;
}

#left {
    top: -8px;
    right: 120%;
}

#right {
    top: -8px;
    left: 120%;
}*/


