﻿.like-box{
	display: flex;
	align-items: center;
	gap: 1rem;
}

.like-count {
	transition: all 0.3s ease;
}

.like-button {
	font-size: 1.4rem;
	color: #cc0000;
	width: 4rem;
	height: 4rem;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.like-button.liked{
	border-color: #cc0000;
}

.like-button.liked:hover{
	background-color: #f0f0f0;
}

.like-button.liked + .like-count{
	color: #cc0000;
}

.like-button:hover {
	background-color: #ffdddd;
}

.like-button .label {
  
}
