#documents-main{
    display: none;
    align-items: center;
    justify-content: space-around;
}
.pdf-viewer{
    width: 65%;
    height: 99%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;justify-content: center;
}



.all-uploaded-pdf{
    width: 30%;
    height: 90%;
    background-color: pink;
    padding: 2%;
}

.all-uploaded-pdf form{
    width: 90%;
    height: 20%;
    background-color: rgba(255, 255, 255, 0.493);
    box-shadow: 0px 0px 4px 2px rgb(255, 255, 255);
    color: rgb(255, 117, 117);
    font-family: impact;
    margin-inline: auto;
    text-align: center;
    overflow: hidden;
}
.all-uploaded-pdf form legend{
    letter-spacing: 1px;
}
.all-uploaded-pdf form label{
    font-size: 0;
}
.all-uploaded-pdf form fieldset{
    border: thin solid white;
    width: 95%;
    height: 95%;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-inline: auto;
    box-shadow: 0px 0px 3px 2px white;
    border: none;
}
.all-uploaded-pdf form fieldset input{
    padding: 15% 22%;
    cursor: pointer;
    font-family: impact;
    top: 0;
}
.all-uploaded-pdf form fieldset input:hover{
    background: linear-gradient(to top,white,transparent);
}

.pdf-files-holder{
    width: 100%;
    height: 80%;
    background-color: black;
    top: 2.5%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.pdf-files-holder .pdf-details{
    width: 90%;
    height: 25%;
    padding: 2%;
    background-color: white;
    color: black;
    overflow: hidden;
    margin-inline: auto;
    top: 2%;
    cursor: pointer;
    margin-bottom: 2%;
}
.pdf-details:hover{
    transition-duration: 200ms;
    background: rgba(255, 255, 255, 0.555);
}
