/* Upload button */
.upload-btn {
    margin-top: 10px;
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

#upload-status {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    color: red;
    text-align: center;
}

.upload-btn i {
    margin-right: 8px;
}

/* Styles for the progress bar */
#progressWrapper {
    width: 100%;
    background-color: #f3f3f3;
    margin-top: 10px;
    display: none;
}

#progressBar {
    width: 0%;
    height: 20px;
    background-color: #4caf50;
    text-align: center;
    line-height: 20px;
    color: white;
}



@media (max-width: 768px) {
    .input-container {
        padding: 5px;
    }

    .upload-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    #progressBar {
        height: 16px;
        line-height: 16px;
    }
}

@media (max-width: 480px) {
    .upload-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    #progressBar {
        height: 14px;
        line-height: 14px;
    }
}

#image-previews {
    display: flex;
    flex-wrap: wrap;
}

.image-container {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.image-container img {
    max-width: 100px;
    display: block;
}

.remove-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    line-height: 20px;
    font-weight: bold;
}