.wcriu-wrapper {
    margin: 20px 0 25px 0; /* Top aur Bottom spacing barha di */
    clear: both;
}

.wcriu-label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.wcriu-dropzone {
    border: 2px dashed #d1d5db; /* Softer grey border */
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px; /* Rounded corners */
    background: #f9fafb;
    transition: all 0.2s ease;
    position: relative;
}

.wcriu-dropzone:hover {
    border-color: #007cba;
    background: #f0f7fc;
}

.wcriu-dropzone.dragging {
    border-color: #007cba;
    background: #eefbff;
    transform: scale(0.99);
}

.wcriu-dropzone span {
    font-size: 14px;
    color: #666;
    pointer-events: none;
}

/* Preview Area */
.wcriu-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.wcriu-thumb {
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    position: relative;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wcriu-thumb.loading {
    background: repeating-linear-gradient(45deg, #f3f4f6, #f3f4f6 10px, #e5e7eb 10px, #e5e7eb 20px);
}

.wcriu-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444; /* Red color */
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: transform 0.1s;
}

.wcriu-remove:hover {
    transform: scale(1.1);
    background: #dc2626;
}

/* Frontend Grid Display (Reviews ke neeche) */
.wcriu-grid {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.wcriu-grid img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    transition: opacity 0.2s;
}

.wcriu-grid img:hover {
    opacity: 0.8;
}