.upload-box {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    min-width: 350px;
}

.preview {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;
    gap: 10px;
}

.preview .image-preview-box {
    width: 100px;
    height: 100px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview .image-preview-box i {
    color: red;
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: 20px;
}

.preview .image-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 5px;
    padding: 10px;
    object-fit: contain;
}

@media (max-width: 500px) {
    .upload-box {
        width: 100% !important;
        min-width: 100%;
    }
}