#file_info_container{
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #b4b4b4;
    padding: 15px;
    align-items: center;
    justify-content: center;
        border: 2px dashed rgba(255, 255, 255, 0.493);
    border-left:solid 2px rgba(255,255,255,0.7);
    border-right: solid 2px rgba(255,255,255,0.7);
    box-shadow:0 0 6px rgba(255,255,255,0.10),
        inset 0 0 4px rgba(255,255,255,0.08);
    background-color: rgb(14, 14, 14);
    padding: 15px;
    min-width: 500px;
    max-width: 100wv;
}
#download_button{
    padding: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    background: black;
}
#download_button_container{
    margin-bottom: 20px;
}
#download_button:hover{
    background-color: #a8a8a8;
    color: black;
}
#file_info_container #file_info_details{
    flex-direction: column;
}
#file_info_container #file_info_details div{
    display: flex;
    gap: 15px;
    margin-top: 5px;
}
#file_info_container .header{
    margin-bottom: 20px;
}
#file_info_container .header_text{
    text-transform: uppercase;
    font-size: 1.8rem;
    color: #ececec;
    width: 100%;
    text-align: center;
}
#download_partial{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    align-items: center;
}
#file_info_container .section_header{
    font-size: 1.4em;
    font-weight: 700;
    padding-bottom: 5px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}
#file_info{
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

#download_complete_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: rgb(14, 14, 14);
    border: 2px dashed rgba(255,255,255,0.7);
    border-left:solid 2px rgba(255,255,255,0.7);
    border-right: solid 2px rgba(255,255,255,0.7);
    padding: 20px;
}
#download_complete_container .header_text{
    font-size: 1.9rem;
    width: 100%;
    text-align: center;
}
#download_complete button{
    font-size: 1.2em;
}

#download_complete p{
    font-size: 1.2rem;
    color:#aaaaaa;
}
#download_complete p.green{
    color: #4caf50;
    font-size: 1.6rem;
}
#new_upload_button{
    padding: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    background: black;
}
#new_upload_button:hover{
    background-color: #a8a8a8;
    color: black;
}