.iris-upload-container {
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
}

.iris-upload-container:hover, .iris-upload-container.drag-over {
    border-color: #4a90e2;
    background: #eff6ff;
}

#drop-zone {
    display: none; /* Alapból rejtve */
    margin-top: 20px;
}

.upload-label { cursor: pointer; pointer-events: none; }
#custom_upload_images { display: none; } /* Elrejtjük a ronda gyári gombot */

.upload-icon { font-size: 3rem; margin-bottom: 10px; }

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.preview-item {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}


.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.preview-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.preview-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #eee;
}

.remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0px!important;
}

.remove-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
}
