
.allDocs{
    display: none;
    border-radius: 14px;
}

.allDocsWrapper{
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    overflow-x: hidden;
    padding:10px;
    border-radius: 14px;
}

.allDocsFind{
    width: 100%;

    input{
        width:calc(100% - 28px);
        border: 1px solid rgb(93, 156, 196);
        background: white;
        padding: 14px;
        border-radius:14px;
    }
}

.allDocsData{
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    flex-direction: column;
    gap: 30px;
    color: rgb(93, 156, 196);
    background: #f2f2f295;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: .3s;
    padding: 30px;
    flex-basis: 33%;
    border-radius: 14px;
}

.doc_item{
    display: flex;
    align-items: start;
    padding: 10px;
    border: 1px solid rgb(93, 156, 196);
    border-radius: 14px;
    flex-direction: column;
    gap: 5px;
    background: white;
    cursor: pointer;
    transition: 1s;
    height: 50px;
}

p{
    padding: 0;
    margin: 0;
}

.addDocToPlace{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:30px;
    height: 280px;
    border: 1px solid rgb(93, 156, 196);
    border-radius: 14px;
    background: lightskyblue;
    margin-top: 50px;
}

.addDocToPlace_list{
    width: 45%;
    height: 80%;
    border: 1px solid rgb(93, 156, 196);
    background: white;
    border-radius: 14px;
    overflow-x: hidden;
    overflow-y: scroll;
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: column;
    position: relative;
    padding-top: 30px;

    p{
        width: 100%;
        cursor: pointer;
        user-select:none;
    }

    p:hover{
        background: lightslategray;
        color: white;
    }

}

.addDocToPlace_selected{
    width: 45%;
    height: 80%;
    border: 1px solid rgb(93, 156, 196);
    background: white;
    border-radius: 14px;
    overflow-x: hidden;
    overflow-y: scroll;
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: column;
    position: relative;
    padding-top: 30px;

    p{
        width: 100%;
        cursor: pointer;
        user-select:none;
    }

    p:hover{
        background: lightslategray;
    }

}

.header_h4{
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}

.addDoc_btns{
    border: 2px dashed rgb(93, 156, 196);
    padding: 5px;
    border-radius: 14px;
    font-weight: bold;
    color: rgb(93, 156, 196);
    background: #f2f2f295;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: .3s;
    user-select: none;
}

.addDoc_btns:hover{
    border: 2px dashed lightskyblue;
    color:lightskyblue;
    cursor: pointer;
}

.middleSticky{
    margin-left: 50%;
    transform: translateX(-50%);
}

.removeDocItem{
    width: 45px;
    height: 45px;
    font-weight: bold;
    color: rgb(209, 150, 150);
    border: 2px solid rgb(209, 150, 150);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    cursor: pointer;
    user-select: none;
    transition: .2s;
    margin-left: 30px;
    position: absolute;
    right: 40px;
}

.removeDocItem:hover{
    background-color: rgb(151, 79, 79);
    border: 2px solid rgb(151, 79, 79);
    color: white;
}