/* Event Image Upload Hover Effects */

.event-image-upload {
    transition: all 0.2s ease;
}

.event-image-upload:hover {
    border-color: #0066FF !important;
    background: #333 !important;
    transform: scale(1.05);
}

.event-image-upload:hover button {
    display: flex !important;
}

/* Generic remove button for all image/video thumbnails (logo, backgrounds, etc.) */
.remove-image-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #dc3545;
    border: 2px solid #fff;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.image-thumbnail-wrapper:hover .remove-image-btn {
    display: flex;
}

.remove-image-btn:hover {
    background: #c82333;
    transform: scale(1.15);
    border-color: #0066ff;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.4);
}
