body
{
    margin:0;
    padding:0;
    font-family: 'Inter';
    background-color: white;
    display: flex;
    justify-content: center;
}

.innerbox
{
    width:700px;
    box-sizing: border-box;
    padding:15px;
    padding-bottom:0;
}

.header
{
    display: flex;
    justify-content: center;
}

.header h1
{
    background-color: #b0ff4a;
    color: black;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 2px;
    border-radius: 0px;
    font-family: 'Dela Gothic One';
    font-weight:400;
    font-size:25px;
}

.separator
{
    margin-bottom: 15px;
    box-sizing: border-box;
}

label
{
    display: block;
    color: black;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 4px;
    font-family: 'Dela Gothic One';
    box-sizing: border-box;
    text-transform: uppercase;
}

input
{
    width:100%;
    padding:10px;
    background-color: white;
    border:1px solid rgba(0,0,0,0.2);
    border-radius:2px;
    font-size: 18px;
    color: black;
    font-weight: 500;
    font-family: 'Space Mono';
    box-sizing: border-box;
    outline:transparent;
}

#ownPeerId
{
    background-color: rgba(0, 0, 0, 0.04);
}

.inputbox
{
    position: relative;
}

.inputbox button
{
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    border: 0px solid rgb(0 0 0 / 20%);
    border-radius: 5px;
    background-color: #cecece;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    margin-right: 7px;
    margin-top: 7px;
    cursor: pointer;
}

.inputbox button:active
{
    background-color: rgb(241, 241, 241);
}

.inputbox button img
{
    width: 100%;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
}

.filezone
{
    width:100%;
    display: flex;
    justify-content: space-between;
    border:1px solid rgba(0,0,0,0.2);
    border-radius:2px;
    padding:10px;
    box-sizing: border-box;
}

.filezone button
{    
    background-color: rgb(176, 255, 74);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: black;
    font-family: 'Space Mono';
    font-weight: 600;
    font-size: 15px;
    border-radius: 2px;
    white-space: nowrap;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filezone button:active
{
    background-color: rgb(149, 217, 63);
}

.filezone button img
{
    width: 17px;
}

#fileInput
{
    border:0;
    padding:0;
    font-size:15px;
}

#fileInput::file-selector-button
{
    margin-right: 20px;
    border: none;
    background: black;
    padding: 10px 20px;
    border-radius: 2px;
    color: white;
    cursor: pointer;
    transition: background .2s ease-in-out;
    font-family: 'Space Mono';
    font-size:15px;
    font-weight:600;
}

#fileInput::file-selector-button:hover
{
    opacity: 0.8;
}


.list
{
    width: 100%;
    box-sizing: border-box;
    margin-top: 50px;
}

.fichier
{
    width:100%;
    height:50px;
    background-color: white;
    border: 1px solid rgb(0 0 0);
    border-radius:2px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.fichierdirection
{
    height:100%;
    width:50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right:1px solid rgba(255,255,255,0.2);
    background-color: black;
}

.fichierdirection a
{
    line-height: 0;
}

.fichierdirection img
{
    width:25px;
}

.fichiername
{
    height:100%;
    width:30%;
    box-sizing: border-box;
    display: flex;
    text-align: left;
    flex-direction: column;
    border-right:0px solid rgba(0,0,0,0.2);
    padding:6px;
    padding-left: 9px;
    background-color: black;
}

.fichiername h2
{
    font-family: 'Dela Gothic One',monospace;
    font-weight: 400;
    color: #cccccc;
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
}

.fichiername h3
{
    font-family: 'Space Mono',monospace;
    font-weight:400;
    color:#bababa;
    font-size:13px;
    margin:0;
}

.fichierprogress
{
    height: 100%;
    box-sizing: border-box;
    width: calc(100% - 30% - 50px - 80px);
    display: flex;
    align-items: center;
    padding: 0px;
    border-right: 0px solid rgba(0,0,0,0.2);
}

.fichierprogress progress {
    height: 100%;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.fichierprogress progress[value]::-webkit-progress-bar {
    background-color: #484848; /* Couleur de la barre de progression */
    border-radius: 0px;
    overflow: hidden;
}

.fichierprogress progress[value]::-webkit-progress-value {
    background-color: rgb(176, 255, 74);
}

.fichierspeed
{
    height:100%;
    width:80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.fichierspeed h2
{
    font-family: 'Space Mono',sans-serif;
    font-weight: 400;
    color: white;
    font-size: 12px;
    margin: 0;
    text-align: center;
}

.list span
{
    margin-top: 50px;
    display: block;
    text-align: center;
    color: #d8d8d8;
    font-family: 'Dela Gothic One';
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
}



.footerbox
{
	width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    /* padding-top: 50px; */
    /* padding-bottom: 50px; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #262626;
    border-radius: 15px 15px 0px 0px;
    margin-top: 50px;
}

.footer
{
    width: 800px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap:30px;
}

.footerelement img
{
    width:150px;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
    margin-bottom: 10px;
}

.footerelement p
{
	font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: grey;
    margin-top: 5px;
}

.footerelement h2
{
	font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #dadada;
    margin-bottom: 10px;
}

.footerelement a
{
	font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: grey;
    text-decoration: none;
    display: flex;
    margin-bottom: 10px;
}

.footerelement a:hover
{
    text-decoration: underline;
}

.footerelementlogo h2
{
	font-family: 'Zilla Slab', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #f2f2f2;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.footerelementlogo h2 img
{
	width: 20px;
    user-select: none;
    pointer-events: none;
	margin:0;
    margin-right: 5px;
}

@media screen and (max-width: 700px) {
    .innerbox {
        width:100%;
    }
    .header h1{
        font-size:22px;
    }
    .footer
    {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
    }
	.footerelementlogo h2
	{
		justify-content: center;
	}
    .footerelement a
    {
        justify-content: center;
    }
}

