#upload_partial{
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#room_container{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 20px;
}
#room_container button{
    height: auto;
    justify-self: end;
    max-width: 120px;
    align-self: center;
    width: 100%;
}
#share_container{
    display: grid;
    grid-template-columns: auto auto;
    max-width: 900px;
    width: 100%;
    text-align: center;
    gap: 10px;   

    background-color: rgb(14, 14, 14);
    
    color: #ccc;
    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);
    box-shadow:
        0 0 6px rgba(255,255,255,0.10),
        inset 0 0 4px rgba(255,255,255,0.08);
    padding: 30px;
    padding-top: 10px;
}
#share_container .header{
    grid-column: span 2;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}
#share_container .header_text{
    font-size: 2em;
    color: #ccc;
    text-transform: uppercase;
}
#password_display_container{
    width: 100%;
    word-break: break-all;
    display: flex;
    flex-direction: column;
    background-color: black;
    padding: 15px;
    border: solid 1px;
    gap: 15px;
    justify-content: space-between;

}

#displayed_password{
    font-weight: 600;
    font-size: 1.8rem;
    user-select: text;
    text-align: center;
    background-color: transparent;
    border: none;
    color: #CCC;
    padding: 0px;
    box-shadow: none;
}
#share_container .section_header{
    margin-bottom: 10px;
    color:#838383;
    font-size: 1.2em;
}
#room_link{
    font-weight: 600;
    user-select: text;
}
#room_info{
    width: 100%;
    max-width: 500px;
    word-break: break-all;
    display: flex;
    flex-direction: column;
    background-color: black;
    padding: 15px;
    border: solid 1px;
    gap: 15px;
}

#file_info_details{
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding: 12px;
    border: dashed 1px #8c8c8c;
    color:#838383;
    background-color: black;
}
#file_info_details span{
    font-weight: 600;
    color: #e9e9e9;
}
#instructions{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ccc;

    padding: 12px;

    border: 1px solid 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(5, 5, 5);

}
#instructions .section_header{
    color:white;
    font-size: 1.6rem;
}
#instructions ul{
    list-style-type: none;
    line-height: 1.5;
    color:#888888;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
@media (max-width: 600px) {
    #share_container{
        grid-template-columns: auto;
        padding: 8px;
        border-left:none;
        border-right:none;
    }
    #share_container .header{
        margin-bottom: 10px;
    }

    #room_info, #password_display_container{
        max-width: 100%;
        grid-column: span 2;
    }

}
#upload_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;
}
#upload_complete_container .header_text{
    font-size: 1.9rem;
    width: 100%;
    text-align: center;
}
#upload_complete_container button{
    font-size: 1.2em;
}

#upload_complete_container p{
    font-size: 1.2rem;
    color:#aaaaaa;
}