.card {
    height: 350px; /* [1.1] Set it as per your need */
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

    /* [2] Transition property for smooth transformation of images */
    .card img {
        height: 300px;
        width: 260px;
        align-self: center;
        background-color: white;
        margin: 5px;
        border: 1px solid #ccc;
        border-radius: 10px;
        transition: transform .5s ease;
    }

    /* [3] Finally, transforming the image when container gets hovered */
    .card:hover img {
        transform: scale(1.1);
        align-self: center;
        background-color: white;
        margin: 5px;
        border: 1px solid #ccc;
        border-radius: 10px;
    }
.image-card {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Bottom-left checkbox */
    .image-card .check-label {
        position: absolute;
        bottom: 0px;
        left: 5px;
        background-color: rgba(255, 255, 255, 255);
        border-radius: 5px;
        padding: 0px;
    }
    .image-card input[type="checkbox"] {
        position: absolute;
        bottom: 5px;
        left: 5px;
        background-color: rgba(255, 255, 255, 255);
        border-radius: 5px;
        padding: 0px;
        width: 20px;
        height: 20px;
    }
    /* Checkbox style 
    .image-card input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }*/

    /* Bottom-right delete button */
    .image-card .delete-btn {
        position: absolute;
        bottom: 5px;
        right: 5px;
        border-radius: 50%;
        border: 1px solid #ccc;
        width: 30px;
        height: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
.text-decoration-line-through {
    color: green;
    font-weight: bold;
    text-decoration: line-through;
}