/* ⚠️ READ _Spec_Starsoft_StyleGuide.md BEFORE making ANY changes */

.Like_Control {
	display: flex;
	align-items: center;
	gap: 4px;
	position: relative;
}

.Like_Thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 8px;
	color: var(--Gray_100);
	cursor: pointer;
}

.Like_Thumb[hidden],
.Like_People[hidden] {
	display: none;
}

.Like_Thumb:hover {
	background: var(--Gray_240);
	color: rgb(60, 170, 220);
}

.Like_Thumb_On {
	color: rgb(60, 170, 220);
}

.Like_Thumb svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linejoin: round;
	pointer-events: none;
}

.Like_Thumb_On svg {
	fill: currentColor;
	stroke: currentColor;
}

.Like_Count {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 36px;
	padding: 0 6px;
	background: transparent;
	border: none;
	border-radius: 8px;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 16px;
	color: var(--Gray_100);
	cursor: pointer;
}

.Like_Count:hover {
	background: var(--Gray_240);
	color: rgb(60, 170, 220);
}

.Like_People {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: absolute;
	right: 0;
	z-index: 40;
	width: 220px;
	max-height: 45vh;
	padding: 10px;
	background: var(--White_250, rgb(255, 255, 255));
	border: 1px solid var(--Gray_220);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	overflow-y: auto;
}

.Like_People_Down {
	top: calc(100% + 4px);
	bottom: auto;
}

.Like_People_Up {
	top: auto;
	bottom: calc(100% + 4px);
}

.Like_People_Empty {
	padding: 8px 4px;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 14px;
	color: var(--Gray_140);
}

.Like_Person {
	display: flex;
	align-items: center;
	gap: 10px;
}

.Like_Person_Pic,
.Like_Person_Letter {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 50%;
}

.Like_Person_Pic {
	object-fit: cover;
	border: 1px solid var(--Gray_220);
}

.Like_Person_Letter {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(60, 170, 220);
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: rgb(255, 255, 255);
}

.Like_Person_Name {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 14px;
	color: var(--Gray_60);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
