@media (max-width: 700px) {
    .tabs {
        margin: 0 !important;
        width: 100% !important;
        height: 94% !important;
    }
    .tabs .text_wrapper { height: 94% !important; }
    .screen_container { grid-template-columns: repeat(3, 1fr) }
    #secret_app { grid-column: 3; }
}

.tabs {
    width: 30rem;
    height: 20rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: gray;
    box-shadow: 3px 3px;
    border-top: 2px solid white;
    border-left: 2px solid white;
}

.tabs[focused] { z-index: 3 !important; }

.tabs .close_tabs {
    background: red;
    color: white;
    border: 1px solid black;
    box-shadow: 1px 1px black;
    padding: 0 .3rem;
    cursor: pointer;
}

.tabs .top_tab_row {
    padding: 1rem;
    border-bottom: 1px solid black;
    cursor: default;
    background: darkgray;
    display: flex;
    justify-content: space-between;
}

.tabs .text_wrapper {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding: 0;
    height: 83.7%;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 1rem;
    gap: 1rem;
    overflow-x: hidden;
}

.tabs .text_wrapper::-webkit-scrollbar {
    height: 12px;
    width: 12px;
    background: none;
}
.tabs .text_wrapper::-webkit-scrollbar-thumb { background: #303030; }
.tabs .text_wrapper::-webkit-scrollbar-corner { background: none; }

.tabs[app_name="trash"] img { 
    width: 1.4rem; 
    left: 0;
}
.tabs[app_name="trash"] img:nth-child(1) {
    position: relative;
    z-index: 1;
}

.tabs[app_name="trash"] section {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid black;
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 1rem;
}