.nv-vote-widget {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 20px 0;
	font-family: inherit;
}

.nv-vote-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border: 1px solid #ddd;
	border-radius: 999px;
	background: #f7f7f7;
	cursor: pointer;
	font-size: 15px;
	line-height: 1;
	transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.nv-vote-btn:hover {
	background: #eee;
}

.nv-vote-btn:active {
	transform: scale(0.96);
}

.nv-vote-btn.nv-active-up {
	background: #e6f6ec;
	border-color: #34a853;
}

.nv-vote-btn.nv-active-down {
	background: #fdecea;
	border-color: #ea4335;
}

.nv-vote-btn[disabled] {
	opacity: 0.6;
	cursor: default;
}

.nv-icon {
	font-size: 18px;
}

.nv-count {
	min-width: 1.2em;
	text-align: center;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.nv-status {
	font-size: 13px;
	color: #d93025;
}

/* Top articles widget */
.nv-top-articles-list {
	list-style: decimal;
	margin: 0 0 0 1.2em;
	padding: 0;
}

.nv-top-article-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.nv-top-article-item .nv-thumb img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.nv-top-article-item .nv-title {
	flex: 1;
	text-decoration: none;
	font-weight: 500;
}

.nv-top-article-item .nv-title:hover {
	text-decoration: underline;
}

.nv-top-article-item .nv-score {
	font-size: 12px;
	color: #666;
	white-space: nowrap;
}
