.fullscreen_app {
    box-sizing: border-box;
    border: 2px solid #1262ee;
    outline: 2px solid #0338da;
}

.fullscreen_app .title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 2em;
    background: linear-gradient(0deg, #0062fb 0%, #0052e6 40%, #0052e5 80%, #358ffd 100%);
    color: whitesmoke;
    padding-left: 8px;
    user-select: none;
}
.fullscreen_app .title img {
    height: 20px;
    width: 20px;
}
.fullscreen_app .menu_bar {
    /* flex:  */
    display: flex;
    background-color: #efedd8;
    border-bottom: 1px inset gray;
    padding: 0 16px;
    user-select: none;
}
.fullscreen_app .menu_bar > button {
    /* cursor: pointer; */
    padding: 4px 12px;
    background-color: inherit;
    font-size: medium;
    border: none;
}
.fullscreen_app .menu_bar > button:hover {
    background-color: darkgray;
}

.fullscreen_app .actions {
    display: flex;
    padding: 0 16px;
    background-color: #efedd8;
    border-bottom: 1px inset gray;
}
.fullscreen_app .actions a {
    text-decoration: none;
}
.fullscreen_app .actions button {
    background-color: inherit;
    border: 4px solid #0000;
    box-sizing: border-box;
    font-size: medium;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.fullscreen_app .actions button:hover {
    background-color: darkgray;
}
.fullscreen_app .actions button.selected {
    border: 4px inset lightblue;
}
.fullscreen_app .actions button > .img {
    height: 24px;
    width: 24px;
    font-size: 1.2em;
}

.fullscreen_app .file_address_bar {
    user-select: none;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #efedd8;
    padding: 6px 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.fullscreen_app .file_address_bar > div {
    flex: 1 1;
    display: flex;
    gap: 4px;
    background-color: white;
    padding-left: 16px;
    box-sizing: border-box;
    border: 1px solid #9fb5ca;
}
.fullscreen_app .file_address_bar > div::after {
    height: 100%;
    width: 0.85em;
    content: "⌄";
    background-color: #b3cffb;
    margin: 1px 1px 1px auto;
    padding: 0 2px;
}
.fullscreen_app .file_address_bar > div a {
    color: black;
    text-decoration: none;
    padding: 1px;
}
.fullscreen_app .file_address_bar > div a:hover {
    background-color: lightgray;
}
.fullscreen_app .file_address_bar > div > span {
    padding: 1px;
}
.fullscreen_app .file_address_bar > button {
    margin-right: 24px;
    background: none;
    border: none;
    padding: 6px;
}
.fullscreen_app .file_address_bar > button:hover {
    background-color: darkgray;
}
.fullscreen_app .file_address_bar > button::before {
    content: "🡲";
    color: whitesmoke;
    background: linear-gradient(300deg, #127e10 0%, #0f8e0e 5%, #4ca74a 60%, #68b465 100%);
    border-radius: 3.5px;
    display: inline-block;
    margin-right: 6px;
    height: 1.5em;
    width: 1.5em;
}

/* MEMOS */
.panels {
    display: flex;
    flex: 1 1;
    min-height: 0;
}
.panels .left {
    min-height: 0;
    user-select: none;
    overflow-y: auto;
    padding: 12px;
    flex: 0 0 280px;
    min-width: min-content;
    background: linear-gradient(0deg, #5772da 0%, #7aa0e6 100%);
}
.panels .left > div {
    color: #3d71cd;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 10px auto;
    border-radius: 12px;
}
.panels .left > div > span {
    background: linear-gradient(90deg, white 0%, #c6d6fd 100%);
    border-radius: 6px 6px 0 0;
    padding: 4px 8px;
    font-size: large;
    user-select: none;
}
.panels .left > div > div {
    background-color: #d6dff7;
    border-radius: 0 0 6px 6px;
    border: 1px solid white;
    border-top: none;
    box-sizing: border-box;
    padding: 8px 12px;
    font-size: medium;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.panels .left > div > div a {
    color: #3d71cd;
    width: fit-content;
}

.folders {
    flex: 1 1;
    background-color: white;
}
.folders > div {
    /* REVIEW */
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-height: 100%;
    overflow-y: auto;
}
.folders a {
    height: fit-content;
    text-decoration: none;
    border-radius: 8px;
}
.folders button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    cursor: pointer;
    height: 88px;
    width: 300px;
    border: none;
    background: none;
    text-align: left;
    font-size: medium;
    border-radius: 8px;
}
.folders button:hover {
    background-color: #306ac5;
    color: whitesmoke;
}
.folders button > img {
    flex-shrink: 0;
    height: 64px;
    width: 64px;
}

.metadata {
    user-select: text;
}
article .memo_title {
    font-size: xx-large;
    margin: 2px;
}
:where(h1) {
    margin-block: 0.67em;
    font-size: 2em;
}
article.memo_text {
    flex: 1 1;
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2vh 8% 10vh 8%;
    overflow-y: auto;
    min-height: 0;
    line-height: 1.6;
}
article.memo_text a {
    color: #0000ee;
}
article.memo_text a:hover {
    background-color: #1919ff;
    color: whitesmoke;
}


.information {
    flex: 1 1 100%;
    box-sizing: border-box;
    padding: 24px;
    background-color: white;
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
