/**
 * Blogfull Likes CSS
 */

.blogfull-like-container {
    display: flex;
    align-items: center;
    margin: 5px;
    background: linear-gradient(45deg, #c19be9, #000);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    max-width: fit-content;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.blogfull-like-button {
    background: transparent;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.blogfull-like-count {
    padding: 0 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    height: 36px;
}

.blogfull-like-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.blogfull-like-icon {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogfull-like-icon i {
    color: white;
}

.blogfull-like-count {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* Animation for like action */
@keyframes like-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.like-animate .blogfull-like-icon {
    animation: like-animation 0.6s ease;
}

/* Styles for single post likes */
.blogfull-single-like-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.blogfull-single-like-container .blogfull-like-container {
    margin: 0;
}

.blogfull-single-like-container .blogfull-like-button {
    width: 45px;
    height: 45px;
}

.blogfull-single-like-container .blogfull-like-count {
    height: 45px;
    font-size: 18px;
    padding: 0 15px;
}

.blogfull-single-like-container .blogfull-like-icon {
    font-size: 22px;
}
