#dropzone-area {
    border: 2px dashed #aaa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fafafa;
}

.image-box {
    display: inline-block;
    position: relative;
    margin: 8px;
}

.image-box img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 1px solid #ddd;
    object-fit: cover;
}

.image-box .delete-image {
    position: absolute;
    top: 3px;
    right: 3px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 14px;
    cursor: pointer;
}
