
.subpage {
    height: 100%; 
    width: 100%; 
    transition: 0.3s; 
    position: absolute; 
    background-color: var(--bg-3); 
    top: 0;
    left: 200%;
    border-radius: 10px;
}

.subpage-layer-2 {
    transform: translateY(-50px);
}

.subpage.show {
    left: 0;
}

.subpage .tabs {
    /*height: unset;*/
    height: calc(100vh - 150px - 2rem); position: relative;
}

.dropzone {
    padding: 30px;
    border: 1px dashed #75868a;
    list-style: none;
    display: flex;
    grid-gap: 1rem;
    flex-wrap: wrap;
}

.no-drop {
    border: 2px dashed red;
}

.can-drop {
    border: 2px dashed green;
}

.draggable {
    margin-bottom: 10px;
    padding: 10px 25px;
    border: 1px solid #424d5c;
    cursor: grab;
    background: #5c6b7f;
    color: #ffffff;
    border-radius: 5px;
    width: 100%;
}

.draggable:active {
    cursor: grabbing;
}

.dragging {
    cursor: grabbing;
}