﻿
.imageUploader_edit_label {
    margin: 15px 0;
    padding: 5px 10px;
    border: 1px solid #999999;
    border-radius: 10px;
    cursor: pointer;
}

.img-wrapper {
    position: relative;
    margin-bottom: 8px;
}

    .img-wrapper img {
        border-radius: 5px;
    }

.delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-color: rgba(60, 70, 150, 0.55);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transform-origin: center center; /* 讓縮放以中心為基準 */
}

    .delete-btn:hover {
        background-color: rgba(60, 70, 150, 0.8);
        transform: scale(1.1);
    }
