
.folder-window {
    display: flex;
    flex-direction: column;

    position: fixed;
    top: 10vh;
    left: 10vw;

    min-width: 355px;
    min-height: 200px;
    width: 40vw;
    height: 40vh;

    resize: both;
    overflow: hidden;

    background-color: rgba(200, 200, 200, .8);
    border: 1px solid rgba(232, 232, 232, 0.8);
    border-radius: 6px;

    box-shadow: 0 0 2px rgba(0, 0, 0, 1);
    backdrop-filter: blur(3px);

    transition: translate 1s, scale .50s;
}

.folder-top-bar {
    display: flex;
    height: 25px;
    justify-content: flex-end;

}

.folder-button-zone {
    display: flex;
    height: 20px;
    border-color: black;
    align-self: flex-start;
    justify-self: flex-end;
    border-width: 1px;
    margin-right: 10px;
    gap: 1px;
    user-select: none;
}

.folder-search-section {
    display: flex;
    width: 100%;
    height: 25px;
    justify-content: flex-start;
    --align-content: center;
    align-items: center;
    user-select: none;
    margin-left: 5px;

}

.folder-return-button {
    outline: #595c60 solid 1px;
    width: 32px;
    --height: 24px;
    text-align: center;
    border-radius: 100%;
    margin-left: 6px;
    color: #595c60;
    user-select: none;

    transition: filter .25s, background-color .25s;
}

.folder-return-button:hover {
    filter:brightness(150%);
}

.folder-return-button:active {
    filter:brightness(200%);
}

.folder-directory-search-box {
    width: 100%;
    height: 20px;
    margin-left: 6px;
    background-color: #ebf2fa;
    text-indent: 12px;

    line-height: 18px;
    font-size: 13px;

    border: 1px solid #81868c;
    border-right-color: #b3bbc3;
    border-bottom-color: #b3bbc3;
    user-select: none;

}

.folder-file-search-box {
    width: 230px;
    height: 20px;
    margin-right: 10px;
    color: gray;
    font-style: italic;
    margin-left: 6px;
    background-color: #ebf2fa;
    text-indent: 12px;
    line-height: 18px;
    font-size: 13px;

    border: 1px solid #81868c;
    border-right-color: #b3bbc3;
    border-bottom-color: #b3bbc3;
    user-select: none;
    overflow: hidden;
}

.folder-bottom-section {
    display: flex;
    flex: 1;
    min-height: 0;
    background-color: #fcfcfc;
    overflow: hidden;
    border: 1px solid #81868c;
    border-right-color: #b3bbc3;
    border-bottom-color: #b3bbc3;
    margin: 10px;
}

.folder-bottom-section-left-bar {
    min-width: 150px;
    flex: .10;
    border-right: 1px solid #d1d1d1;
    text-align: left;

    margin-left: 15px;
    --margin-top: 20px;
    user-select: none;
    overflow-y: scroll;
}

.folder-quick-selection-sub-folder,
.folder-quick-selection-folder {
    display: flex;
}

.folder-quick-selection-folder-icon {
    width: 16px;
    height: 16px;
}

.folder-quick-selection-folder {
    margin-top: 15px;
}

.folder-quick-selection-sub-folder {
    margin-top: 5px;
    margin-left: 10px;
}

.folder-quick-menu-folder-name {
    margin-left: 5px;
}

.folder-quick-selection-folder:hover,
.folder-quick-selection-sub-folder:hover {
    text-decoration: underline;
}

.folder-quick-selection-folder:active,
.folder-quick-selection-sub-folder:active {
    color: gray;
}

.folder-bottom-section-content {
    flex: 1;

    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    min-width: 0;
    overflow: auto;
    user-select: none;
}


.folder-item {
    position: relative;
    margin-top: 10px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100px;
    height: 64px;

}

.folder-item-button {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
}

.folder-item-icon {
    width: 24px;
    height: 24px;
}

.folder-icon-name {
    width: 100%;
    height: 24px;
    word-wrap: break-word;
}

.folder-item:hover {
    outline: rgba(196, 226, 255, 0.6) solid 1px;
}

.folder-item:active {
    background-color: rgba(56, 147, 251, 0.3);
}