.post-like-wrapper {
    margin: 15px 0;
}

.post-like, .post-comment{
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-like:hover, .post-comment:hover {
    background: #e0e0e0;
}

.post-like.liked, .content__footer .likes.liked{
    background: #4CAF50;
    color: white;
    pointer-events: none;
}

.like-icon {
    font-size: 16px;
}

.like-count {
    font-weight: bold;
}

span.post-comment{

    background: transparent;
}