#filebrowserContent {
    display: grid;
    grid-template-rows: 26px 1fr;

    .searchBar {
        background-color: #b6b6b6;
        border-bottom: 2px solid #818181;

        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 2px;
        padding-right: 2px;

        width: calc(100% - 4px);

        max-height: 100vh;

    }
    .searchBar p {
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
.searchBar button {
    padding-bottom: 4px;
    margin: 0px;
    padding-left: 2px;
    padding-right: 2px;

    width: auto;
    height: 22px;

    background-color: #b6b6b6;
    border-top: 2px solid #e7e7e7;
    border-left: 2px solid #e7e7e7;
    border-right: 2px solid #818181;
    border-bottom: 2px solid #818181;
}
.searchBar button:active {
    border-top: 2px solid #818181;
    border-left: 2px solid #818181;
    border-right: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
}

    .itemGrid {
        width: 100%;
        /* background-color: violet; */

        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        grid-template-rows: repeat(auto-fill, minmax(90px, 1fr));
    }

.itemGrid .item {
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-position: center 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* text at bottom */
    align-items: center;
    padding-bottom: 4px;
    overflow: hidden;
}

.itemGrid .item span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    font-size: 12px; /* base size */
    text-align: center;
}




}