﻿.btn-edit {
    position: absolute;
    top: 5px;
    right: 50px; /* Position to left of delete */
    background-color: rgba(20, 20, 20, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    z-index: 10;
    padding: 0;
}

    .btn-edit:hover {
        transform: scale(1.1);
        background-color: #2196F3;
    }

    .btn-edit i {
        font-size: 14px; /* Adjust icon size */
    }



/* Preview of existing image in edit mode */
.current-image-preview {
    margin-top: 1rem;
    text-align: center;
    border: 1px dashed var(--border-color);
    padding: 10px;
    border-radius: 8px;
}

    .current-image-preview img {
        max-height: 150px;
        border-radius: 4px;
    }

.current-image-label {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-text);
    margin-bottom: 5px;
}
