* {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
#image_preview {
    margin: 20px auto 0px auto;
    text-align: center;
    display: none;
    width: 80%;
}
#image_preview p {
    color: rgb(255, 0, 0);
    font-size: 16px;
    font-weight: bold;
    font-family: "Nunito sans", sans-serif;
}
#output_image {
    text-align: center;
    height: inherit;
    width: 600px;
    box-shadow: 0 0 12.5px rgb(55, 55, 55);
}
#SuggestionForm {
    text-align: left;
    background-color:rgb(255, 255, 255);
    padding: 10px;
    border-radius: 8px;
    margin: 6rem auto 1rem auto;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
    width: 40%;
}
.StructureName {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    padding: 2.5px 18px;
    width: -moz-available;          
    width: -webkit-fill-available;  
    width: fill-available;
    border: 2px solid rgb(225, 225, 225);
    border-radius: 6px;
    margin: auto;
    margin-block-start: 5px;
    font-size: inherit;
    height: 6vh;
}
.StructureName:focus {
    outline: 2px solid rgb(253, 207, 61);
}
.notif {
    color: rgb(255, 0, 0);
    margin-top: 5px;
    font-size: 14px;
    width: 80%;
    display: none;
}
.file-button {
    width: -moz-available;          
    width: -webkit-fill-available;  
    width: fill-available;
    margin: 2px auto;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(55, 55, 55);
    color: rgb(255, 255, 255);
}
.file-button:hover {
    background-color: rgb(105, 105, 105);
    cursor: pointer;
}
.upload {
    margin-block-start: 10px;
}
.SuggestBtnDiv {
    margin-block-start: 10px;
}
progress {
    width: 100%;
    margin: 5px 0px;
    padding: 15px auto;
    height: 22px;
    appearance: none;
    border-radius: 5px;
    border: 2px solid rgb(155, 155, 155);
}
progress::-webkit-progress-bar {
    background-color: rgb(255, 255, 255);
}
progress::-webkit-progress-value {
    background-color: rgb(55, 55, 55);
    border-radius: 2px;
}
.SuggestBtn {
    width: -moz-available;          
    width: -webkit-fill-available;  
    width: fill-available;
    margin: 2px auto;
    height: 5vh;
    font-family: Montserrat, "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: bold;
    background-color: rgb(55,55,55);
    border:none;
    border-radius:4px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color:white;
    cursor: not-allowed;
}
.SuggestBtn:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(105, 105, 105);
}
.g-recaptcha > div {
    width: auto !important;
}

@media only screen and (max-width: 1000px){
    #SuggestionForm {
        width: 80%;
    }
    #output_image {
        height: inherit;
        text-align: center;
        width: 300px;
        box-shadow: 0 0 12.5px rgb(55, 55, 55);
    }
    .notif {
        width: 90%;
    }
}

@media only screen and (max-width: 400px) {
    #output_image {
        width: 250px;
    }
}