.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: turquoise;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.like-btn:hover {
    background: #f8f8f8;
    transform: translateY(-1px);
}

.like-btn .like-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.like-btn .like-count {
    font-weight: 500;
    color: #666;
}

.like-btn.liked {
    background: turquoise;
    border-color: #ffcdd2;
}

.like-btn.liked .like-count {
    color: #e53935;
}

.like-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}