.like-button-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.like-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    background: #00E8B8;
    color: #777;
    border: 1px solid #00E8B8;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}

.like-button:hover,
.like-button:focus {
    background: #00FEFF;
    color: #777;
    border-color: #FF00D6;
}

.like-button.liked {
    background: #FF00D6;
    color: #fff;
    border-color: #FF00D6;
    cursor: default;
}

.like-icon {
    margin-right: 0.5rem;
}

.like-count {
    font-weight: bold;
}

@media (max-width: 767px) {
    .like-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}