header{
    border-radius: 0px;
    color: white;

    background: linear-gradient(90deg, rgba(91,147,255,1) 5%, rgba(65,52,255,1) 33%, rgba(0,212,255,1) 95%);

    margin-bottom: 0px;
    padding: 5px 15px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-sizing: border-box;

    font-size: large;
    font-weight: bold;
}

.header{
    display: flex;
    justify-content: space-between;
}

.header *{
    display: flex;
    align-items: center;
}

.header-left{
    gap: 15px;
}

.header-right{
    gap: 8px;
}

.header-right button{
    gap: 8px;
    padding: 8px 10px;

    border-radius: 5px;

    cursor: pointer;

    font-weight: bold;
}

.upload-btn{
    background-color: rgba(255, 255, 255, 0);
    color: rgb(255, 255, 255);
    border: solid 1px rgba(238, 238, 238, 0.534);
}

.download-btn{
    background-color: rgb(247, 247, 247);
    border: 0;
}

.file-name{
    padding: 12px;
    border: solid 1px rgba(238, 238, 238, 0);
    border-radius: 5px;

    background-color: rgba(255, 255, 255, 0);
    color: white;

    font-size: 15px;
    font-weight: bold;
}

.file-name:focus{
    outline: none;
    border-color: rgba(238, 238, 238, 0.534);
    
}

.file-name:hover{
    border-color: rgba(238, 238, 238, 0.534);
}

.file-name::placeholder{
    color: rgba(238, 238, 238, 0.534);
    font-weight: bold;
}