body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #03b174;
}

.container {
    width: 100%;
    height: 100%;
}

.firstDiv {
    width: 80%;
    height: 80%;
    flex-shrink: 0;
    border-radius: 15px;
    border: 2px solid #6B0303;
    background: #C70C09;
    box-shadow: 15px 15px 4px 0 #6B0303;
    display: flex;
    margin-left: 10%;
}

.left-side {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 86px;
    width: 45%;
}

.progress {
    display: flex;
    width: 4vw;
    height: 4vw;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 75px;
    background: linear-gradient(0deg, #AFEBF7 0%, #AFEBF7 100%), linear-gradient(180deg, #266CF5 0%, #266CF5 0.01%, rgba(175, 235, 247, 0.00) 100%);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
}

.progress-text {
    color: #000;
    font-family: "Pokemon Pixel Font Regular";
    font-size: 3vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.video-part {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 17px;
    background: #D9D9D9;
    width: 80%;
}

.bottom-video {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.result-video {
    width: 100%;
    height: 100%;
}

.mid-side {
    width: 10%;
    height: auto;
    flex-shrink: 0;
    border: 1px solid #6B0303;
    background: #C70C09;
    box-shadow: 20px 0 34px -6px #6B0303 inset, -20px 0 34px -6px #6B0303 inset, 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.right-side {
    margin-top: 3vw;
    margin-bottom: 3vw;
    display: flex;
    width: 45%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.names {
    display: flex;
    width: 80%;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    background: #6CC93B;
}

.name {
    color: #000;
    font-family: "Pokemon Pixel Font Regular";
    font-size: 2vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.images {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
}

.image-import {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 45%;

}

.image-import-header-text {
    color: #FFF;
    text-align: center;
    font-family: "Pokemon Pixel Font Regular";
    font-size: 2vw;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    margin-block-start: 0;
    margin-block-end: 0;
}

.image-import-buttons {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: center;
}

.image-import-button {
    border: none;
    cursor: pointer;
    display: flex;
    width: 45%;
    height: 48px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #F5F5F5;
    text-align: center;
    font-family: "Pokemon Pixel Font Regular";
    font-size: 1.5vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blue {
    background: #266CF5;
}

.orange {
    background: #FB9047;
}

.custom-file-input {
    display: flex;
    width: 100%;
    height: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    cursor: pointer;
    background-color: white;
    border-radius: 10px;
    transition: background-color 0.3s;
    border: 6px dashed #000000; /* This makes it obvious it's a drop zone */
}

.custom-file-input img {
    display:flex;
    margin-top: 2vw;
    max-height: 3%;
    max-width: 40%;
}

.custom-file-input p {
    /* Add any specific styles for the text if needed */
    margin-bottom: 1vw;
}

/* If you want to visually show when the custom input is being clicked */
.custom-file-input:active {
    background-color: #eee;
}

.input-file-text {
    color: #000;
    font-family: "Pokemon Pixel Font Regular";
    font-size: 2vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.name-pair {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Cela alignera les éléments (label + input) à gauche */
    margin-bottom: 10px; /* Pour ajouter un espace entre chaque paire; ajustez selon vos préférences */
}

.name-pair label {
    margin-right: 10px; /* Pour ajouter un espace entre le label et l'input; ajustez selon vos préférences */
}

/* Style pour les inputs pour les faire ressembler aux labels */
#text1, #text2 {
    font-family: "Pokemon Pixel Font Regular";
    font-size: 2vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none; /* Enlève la bordure par défaut des inputs */
    background: transparent; /* Enlève le fond blanc par défaut des inputs */
    outline: none; /* Enlève l'effet de focus bleu par défaut */
    width: 200px; /* Définit une largeur fixe pour les inputs; ajustez selon vos besoins */
    padding-left: 5px; /* Espace à gauche à l'intérieur de l'input */
    border-bottom: 2px solid #333;
}

.image-button {
    border: none;
    cursor: pointer; /* Makes the mouse cursor turn to a hand when hovering */
    padding: 10px; /* Space around the image, you can adjust as necessary */
    transition: 0.3s; /* Smoothens the hover effect */
    border-radius: 10px;
    background: #FB9047;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.image-button img {
    width: 50px;
    height: 50px;
}

#process-button {
    background: #24B103;
}

#process-button:disabled {
    cursor: not-allowed;
    background: #D9D9D9;
}

#download {
    background: #03b174;
}

.form-button {
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-family: "Pokemon Pixel Font Regular";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    border: none;
}

.form-buttons {
    display: flex;
    gap: 16px;
}


#download {
    display: none;
}

#process-button.shown {
    display: inline-block;
}

#download.shown {
    display: inline-block;
}

#process-button.hidden, #download.hidden {
    display: none;
}

.top-left-side-wrapper {
    width: 100%;
    height: 20%;
    flex-shrink: 0;
    background-color: transparent; /* set it transparent */
    position: relative; /* set it relative to position progress inside */
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress {
    position: absolute; /* this will make sure the progress sits on top of the SVG */
    z-index: 1;
    left: 1vw;
    /* If you want it vertically centered as well */
    top: 45%;
    transform: translateY(-50%);
}

h1 {
    font-family: "Pokemon Pixel Font Regular";
    font-size: 50px;
    margin-block-start: 0;
    margin-block-end: 1vw;
    text-align: center;
}


.credits {
    font-family: "Pokemon Pixel Font Regular";
    font-size: 25px;
    text-align: center;
}

