.connection-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.workspace {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 48px);
}

    .workspace .contents {
        position: absolute;
        transform-origin: 0 0;
        user-select: none;
    }

        .workspace .contents .promptlab-workspace-selected {
            transition: none;
        }

        .workspace .contents .chatinput {

        }

        .workspace .contents .chatbot {

        }

        .workspace .contents .grouped {
            box-shadow: 0 0 20px 10px #ff6a00;
        }

        .workspace .contents .grouping {
            box-shadow: 0 0 20px 10px #00ff90;
        }

        .workspace .contents .groupable {
            box-shadow: 0 0 20px 10px #fbf435;
        }

    .workspace .ease {
        transition: ease-out 0.15s;
    }


    .gifcontainer:hover img.static{
        display: none;
    }
    .gifcontainer:hover img.gif{
        display: block !important;
    }