.b2boost-wrap {
	max-width: 900px;
	margin: 20px auto;
}

.b2boost-locked {
	background: #fff3cd;
	border: 1px solid #ffe69c;
	padding: 16px;
	border-radius: 6px;
	text-align: center;
}

/* ---- Zone d'ajout ---- */
.b2boost-add-post {
	display: flex;
	gap: 10px;
	background: #fff;
	padding: 16px;
	border-radius: 8px;
	margin: 20px 0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.b2boost-add-post input[type="text"] {
	flex: 1;
	padding: 10px 14px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-sizing: border-box;
}

.b2boost-add-post input[type="text"]:focus {
	border-color: #6366f1;
	outline: none;
	box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
}

.b2boost-publish-btn {
	white-space: nowrap;
	background: #6366f1;
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}

.b2boost-publish-btn:hover {
	background: #4f46e5;
}

.b2boost-publish-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

/* ---- Le mur ---- */
#b2boost-wall {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	overflow: hidden;
}

.b2boost-empty {
	padding: 40px;
	text-align: center;
	color: #888;
	font-size: 15px;
}

/* ---- Une ligne = un post ---- */
.b2boost-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid #f0f0f0;
	transition: background 0.15s;
}

.b2boost-row:hover {
	background: #fafbff;
}

.b2boost-row:last-child {
	border-bottom: none;
}

.b2boost-icon {
	font-size: 18px;
	flex-shrink: 0;
	width: 22px;
	text-align: center;
}

.b2boost-author {
	font-weight: 600;
	color: #1f2937;
	flex-shrink: 0;
	width: 150px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration: none;
}

.b2boost-author:hover {
	color: #6366f1;
	text-decoration: underline;
}

.b2boost-link {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #6366f1;
	text-decoration: none;
	font-size: 13px;
}

.b2boost-link:hover {
	text-decoration: underline;
}

.b2boost-supporters {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	width: 180px;
}

.b2boost-avatars {
	display: flex;
	align-items: center;
}

.b2boost-avatar-link {
	display: inline-flex;
	line-height: 0;
}

.b2boost-avatar {
	border-radius: 50%;
	border: 2px solid #fff;
	margin-left: -8px;
	box-shadow: 0 0 0 1px #ddd;
	transition: transform 0.15s;
}

.b2boost-avatar-link:hover .b2boost-avatar {
	transform: scale(1.15);
	z-index: 1;
	position: relative;
}

.b2boost-avatars .b2boost-avatar-link:first-child .b2boost-avatar {
	margin-left: 0;
}

.b2boost-more {
	margin-left: 4px;
	font-size: 12px;
	color: #888;
	background: #f0f0f0;
	padding: 2px 6px;
	border-radius: 10px;
}

.b2boost-count {
	font-size: 12px;
	color: #888;
	white-space: nowrap;
}

.b2boost-no-support {
	font-size: 12px;
	color: #bbb;
	font-style: italic;
}

/* ---- Boutons ---- */
.b2boost-btn {
	flex-shrink: 0;
	padding: 6px 14px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	white-space: nowrap;
}

.b2boost-btn-support {
	background: #6366f1;
	color: #fff;
	transition: all 0.15s;
}

.b2boost-btn-support:hover {
	background: #4f46e5;
}

.b2boost-btn-done {
	background: #ecfdf5;
	color: #10b981;
	border: 1px solid #10b981;
}

.b2boost-btn-own {
	background: #f3f4f6;
	color: #999;
	font-style: italic;
}

.b2boost-delete {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border: none;
	background: transparent;
	color: #ccc;
	font-size: 15px;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.15s;
	line-height: 1;
}

.b2boost-delete:hover {
	background: #fee2e2;
	color: #ef4444;
}

.b2boost-delete:disabled {
	opacity: 0.4;
	cursor: default;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.b2boost-author {
		width: 100px;
		font-size: 13px;
	}
	.b2boost-supporters {
		width: 110px;
	}
	.b2boost-count {
		display: none;
	}
	.b2boost-delete {
		width: 22px;
		height: 22px;
		font-size: 13px;
	}
}

@media (max-width: 600px) {
	.b2boost-row {
		flex-wrap: wrap;
	}
	.b2boost-link {
		order: 4;
		width: 100%;
		flex: 1 0 100%;
	}
}
