#dropArea {
    border: 2px dashed #ccc;
    padding: 50px;
    text-align: center;
    cursor: pointer;
}
.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.image-box {
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cursor-pointer{
    cursor: pointer !important;
}
.css-text-blak{
    color: #000000 !important;
}
/* .css-justify-content-around {
    display: flex !important;
    width: 100% !important;
    justify-content: end !important;
} */
.remove-btn{
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
}