.htmlShell_Explorer {
    flex: 1 1 auto;
    border: 1px solid blue;
    width: 400px;
    padding: 5px;
    overflow: auto;
}
.htmlShell-Item {
    display: flex;
    align-items: center;
}
.htmlShell-Button-space {
    width: 25px;
    margin-left: 5px;
    margin-right: 5px;
}
.htmlShell-File-Icon {
    color: darkblue;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 18pt;
}
.htmlShell-FileName {
    font-size: 14pt;
    margin-left: 5px;
    margin-right: 5px;
    white-space: nowrap;
}
.hrmlShell-ExpandBtn {
    border-radius: 20px;
    width: 25px;
    margin-left: 5px;
    margin-right: 5px;
}
.htmlShell-FolderIcon {
    color: darkblue;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 18pt;
    color: #FFE28D;
}
.addColumnsItem {
    display: flex;
    border: 2px solid #f0f1f4;
    padding: .75rem 1.25rem;
    margin-bottom: 0.5rem;
    border-radius: .35rem;
}

.bhtmlThinGrid {
    display: flex;
    flex-direction: column;
}

    .bhtmlThinGrid > div {
        flex: 1 1 auto;
        overflow: auto;
    }

.bhtmlPropertyHeader {
    border: 1px solid #E1E1E1;
    padding: 1px;
    width: 100%;
    height: 28px;
    min-width: 150px;
    min-height: 25px;
    box-sizing: border-box;
    background-color: #F0F0F0;
    font-weight: bold;
    color: blue;
}

.bhtmlPropertyName {
    border: 1px solid #E1E1E1;
    padding: 1px;
    width: 200px;
    height: 28px;
    min-width: 150px;
    min-height: 25px;
    box-sizing: border-box;
    background-color: #F0F0F0;
    font-weight: bold;
    text-align: left;
}

.bhtmlButtonHover .bhtmlButtonHoverBtn {
    display: none;
}

.bhtmlButtonHover:hover .bhtmlButtonHoverBtn {
    display: inline-block;
}

.bhtmlCell {
    border: 1px solid #E1E1E1;
    padding: 1px;
    width: 150px;
    height: 28px;
    min-width: 150px;
    min-height: 25px;
    box-sizing: border-box;
    cursor: pointer;
    overflow:hidden;
}

    .bhtmlCell:hover {
        border-color: #007bff;
        background-color: #f9f9f9;
    }

.bhtmlLeftCell {
    width: 30px;
    min-width: 30px;
    position: sticky;
    /*z-index: 1;*/
    background-color: #F0F0F0;
}

.bhtmlTopCell {
    position: relative;
    /*z-index: 1;*/
    background-color: #F0F0F0;
    font-weight: bold;
    text-align: center;
}



.bhtmlbi-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    border: 1px solid #000;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    background-color: #ececec;
    height: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    resize: both;
    overflow: hidden;
}

.bhtmlbi-window-title-bar {
    background: linear-gradient(#1a73e8, #0057b7);
    color: white;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    cursor: move;
}

.bhtmlbi-window-title-bar-buttons {
    display: flex;
    gap: 4px;
}

.bhtmlbi-window-title-bar-button {
    width: 16px;
    height: 16px;
    background: white;
    color: black;
    border: 1px solid #333;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    cursor: pointer;
    user-select: none;
}

.bhtmlbi-window-content {
    position: relative;
    padding: 10px;
    background-color: white;
    overflow: auto;
    border-top: 1px solid #aaa;
    flex: 1;
}

.BhtmlBiTaskbarItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

    .BhtmlBiTaskbarItem > i {
        font-size: 48pt;
    }

    .BhtmlBiTaskbarItem > label {
        font-size: 14pt;
    }

    .BhtmlBiTaskbarItem:hover {
        background: #eee;
    }

.BhtmlBiTaskbar {
    background-color: #332115;
    height: 70px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.Taskbar:hover {
    height: 70px;
}

.BhtmlUiDesktop {
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 70px;
    /*height: 300px;*/
    position: fixed;
}

.BhtmlUiDesktopItemsHost {
    column-width: 150px;
    column-gap: 60px;
    column-fill: auto;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: auto;
}

    .BhtmlUiDesktopItemsHost > div {
        break-inside: avoid; /* Optional: avoids breaking inside child items */
        margin-bottom: 40px;
    }

.BhtmlUiDesktopWindowsHost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    width: 0;
    height: 0;
}
.bria-box {
    width: 420px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    transform: scale(0);
}

.bhtmlbi-scale-ani {
    transform-origin: 0% 0%;
    animation: bhtmlbi-scale-ani_frame 0.6s ease-out forwards;
}
@keyframes bhtmlbi-scale-ani_frame {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}
