﻿.btn-delete {
    padding: 0px 3px;
    font-size: 12px;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
    }

        .image-wrapper img:hover {
            transform: scale(1.05)
        }

    .image-wrapper > .btn-delete {
        position: absolute;
        top: 5px;
        right: 5px;
    }
