/**
 * ZapInvest Favorites Module Styles
 */

.zapfav-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 0;
    background: none;
}

.zapfav-heart:hover {
    transform: scale(1.1);
}

.zapfav-heart svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #FFF;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.zapfav-heart.active svg {
    fill: #FFF;
    stroke-width: 0;
    stroke: #FFF;
    stroke-width: 1.5;
}

.zapfav-heart:hover svg {
    fill: #FFF;
    stroke-width: 0;
    stroke: #FFF;
    stroke-width: 1.5;
}

/* Ensure the parent container has relative positioning */
.bien-listing {
    position: relative;
}

.bien-listing .uk-card-media-top {
    position: relative;
}

