﻿
/* MAIN VIEW */

.BoxView {
    position: absolute;
    top:10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    padding: 25px;
    background-color: var(--GlassColor);
    backdrop-filter: var(--GlassBlur);
    -webkit-backdrop-filter: var(--GlassBlur);
    border-radius: 10px;
    overflow: hidden;
}

.BoxView .Header
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap:10px;
    width: 100%;
    height: auto;
    margin-top:20px;
    margin-bottom:30px;
}
    .BoxView .Header span {
        font-size: 1.3em;
        color: var(--FontOppositeColor);
    }

.BoxView .box {}
.BoxView .Console {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap:10px;    
}

    .BoxView .Console input {
        flex-grow: 2;
        border-radius: 3px;
    }

    .BoxView .Console button {
        max-width: 60px;
        flex-grow: 1;
        border-radius: 3px;
    }
        .BoxView .Console button:first-child {
            background-color:var(--ThemeColorSecondary);
        }





.RecentBoxList {
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: start;
    align-items: start;
    flex-wrap: wrap;
    row-gap:15px;
    column-gap:15px;
    margin-top:20px;
    overflow-y: scroll;
    padding-right:15px;
    height: 100%;
    padding-bottom:10px;
}

.RecentBoxList .Item {
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    width: calc(50% - 8px);
    height: 170px;
    padding: 25px;
    background-color: var(--GlassColor);
    border-radius: 6px;
    cursor: pointer;
}


.RecentBoxList .Item div {
    display: flex;
    flex-direction: column;
    row-gap:10px;
}

.RecentBoxList .Item div span:first-child {
    color:var(--FontColor);
}

.RecentBoxList .Item div span:last-child {
    color:var(--FontOppositeColor);
    font-size:0.9em;
}