/**
 * NPC System Stylesheet
 * Styles for NPC postbit display and library
 */

/* NPC Postbit Author Box */
.npc_postbit_author {
	display: flex;
	gap: 10px;
	padding: 10px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 10px;
}

.npc_postbit_avatar img {
	max-width: 100px;
	max-height: 100px;
	border-radius: 4px;
}

.npc_postbit_info {
	flex: 1;
}

.npc_badge {
	display: inline-block;
	background: #4CAF50;
	color: white;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 10px;
	font-weight: bold;
	margin-bottom: 5px;
}

.npc_name {
	font-size: 16px;
	font-weight: bold;
	margin: 5px 0;
}

.npc_name a {
	text-decoration: none;
	color: #333;
}

.npc_name a:hover {
	color: #4CAF50;
}

.npc_field {
	font-size: 11px;
	color: #666;
	margin: 2px 0;
}

/* Hide original post author info when NPC is used */
/* Use general sibling selector to hide any post_author that comes after npc_postbit_author */
.npc_postbit_author ~ .post_author {
	display: none !important;
}
		