            
            .previewImages{
            display:flex;
            gap:10px;
        }
    
        /* Style for the file input container */
        /*.file-input-container {*/
            /*position: relative;*/
            /*overflow: hidden;*/
            /*display: inline-block;*/
            /*margin: 10px;*/
            /*border: 2px solid #ccc;*/
            /*border-radius: 5px;*/
            /*background-color: #f1f1f1;*/
            /*padding: 10px;*/
        /*}*/

        /* Style for the file input */
        .file-input {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
        }

        /* Style for the custom file input button */
        .custom-file-input-button {
            background-color: #4B49AC;
            color: #fff!important;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Style for the image preview container */
        .image-container {
            position: relative;
            display: inline-block;
            margin: 0px;
            padding:0;
            height:100px;
            width:100px;
            border:1px solid lightgray;
            border-radius:3px;
            background: #fff;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            }
            
        .image-container .preview-image{
            position:absolute;
            top:50%;
            left:50%;
            transform:translate(-50%,-50%);
            max-height:96%;
            max-width:96%;
            height:auto;
            width:auto;
        }    

        /* Style for the remove button */
        .remove-button {
            position: absolute;
            top: -7px;
            right: -7px;
            background: rgba(0, 0, 0, .7);
            backdrop-filter: blur(5px);
            color: #fff;
            height: 25px;
            width: 25px;
            display: flex
        ;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            border: none;
            padding: 0px;
            border-radius: 50%;
        }


        #previewImages, #previewImages2{
            display:flex;
            gap:10px;
            align-items:center;
            padding:10px;
            border-radius:5px;
            /*background:#fff;*/
            flex-wrap:wrap;
            margin-top: 15px;
            padding-top: 0;
            margin-top: 0;
        }
        #sellerForm #previewImages{
            margin-top: 15px;
        }