/* TITLE BAR */

#titleBar {

    position: absolute;
    bottom: var(--titleBar-bottom);
    left: var(--titleBar-leftAndRight);
    right: var(--titleBar-leftAndRight);
    width: unset;
    height: var(--titleBar-height);
    border-radius: var(--border-radius);
    background-color: var(--background-rgb);
    background-color: var(--background-rgba);
    
}



/* LEFT TITLEBAR GRID CONTAINER */

#leftTitlebarContainer {

    display: grid;
    gap: 0px;
    grid-template-columns:
        var(--titleBar-height) var(--titleBar-height) auto;
    grid-template-rows: var(--titleBar-height);
    grid-template-areas:
        "minimapToggle sceneListToggle sceneListCurrent";

    align-items: center;
    justify-items: center;

    position: absolute;
    width: auto;
    height: var(--titleBar-height);
    left: var(--titleBar-leftAndRight-plus-margin);
    bottom: var(--titleBar-bottom);

}



/* TOGGLE */

#positionMobileToggle {

    display: none;

}



/* SCENE NAME */

#sceneNameDiv {

    grid-area: sceneListCurrent;

    max-width: 300px;

}



#sceneName {

    font-weight: 300;

    width: 100%;
    height: 100%;
    line-height: var(--titleBar-height);

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;

}