﻿.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#imageContainer {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 6px;
    min-height: 100px;
    background-color: #fff;
    cursor: copy;
    margin: 10px 0;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

    #imageContainer::before {
        content: "Drag or Copy Paste items here (Press Ctrl + V to paste directly)";
        color: #6c757d;
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    #imageContainer.has-images::before {
        display: none;
    }

    #imageContainer img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        margin: 5px;
        border-radius: 4px;
        display: inline-block;
    }

    #imageContainer:hover {
        border-color: #80bdff;
        background-color: #e9ecef;
    }

.img-wrapper {
    display: inline-block;
    position: relative;
    margin: 5px;
}

.pasted-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.remove-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

#imageContainer.dragging {
    border-color: #80bdff;
    background-color: #e9ecef;
}
