.custom_gallery_container {
    background: #fff;
}
.custom_gallery_container.loading {
    opacity: 0.5;
    pointer-events: none;
}

.image-container {
    position: relative;
    padding: 10px;
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1.05);
}

.replace {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.upload-own {
    text-align: center;
    background-color: black;
    color: white;
    padding: .1em;
    border-radius: 3px;
}

.upload-own:hover {
    background: grey;
}

.upload-replace-custom {
    margin: 20px 0;
    padding: 20px;
    border: 1px dashed #ccc;
} 