.page-body {
    background-color: #F5F7FA;
    padding: 0.5rem 1em 4px;
}
.action-bar{margin: 4px 0 0.8em 0;}
.post{box-shadow: 0 1px 2px rgb(211, 218, 217); padding: 5px 1em;    margin: 0.5em 0 1.8em 0;}
.postprofile dt.no-avatar{    line-height: 0;    margin-left: 0;}
.postprofile  a{font-size: 18px;}
.post-actions { position: relative; }

/* กล่อง dropdown แบบ Facebook */
.post-actions-menu{
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	z-index: 999;

	min-width: 260px;
	padding: 8px;
	margin: 0;
	list-style: none;

	background: #fff;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* ลูกศรเล็ก ๆ ชี้ขึ้น */
.post-actions-menu:before{
	content: "";
	position: absolute;
	top: -6px;
	right: 18px;
	width: 12px;
	height: 12px;
	background: #fff;
	transform: rotate(45deg);
	border-left: 1px solid rgba(0,0,0,.08);
	border-top: 1px solid rgba(0,0,0,.08);
}

/* รายการในเมนู */
.post-actions-menu li{ margin: 0; padding: 0; }

.post-action-item{
	display: flex;
	align-items: center;
	gap: 12px;

	padding: 10px 12px;
	border-radius: 10px;
	text-decoration: none;
	white-space: nowrap;
	color: inherit;
}

.post-action-item:hover{
	background: rgba(0,0,0,.06);
}

/* ทำวงกลมด้านหลังไอคอน โดยไม่ต้องแก้ HTML */
.post-action-item i.icon{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 36px;
	height: 36px;
	font-size: 20px;          /* ขนาด icon */
	line-height: 1;
	z-index: 1;
}

.post-action-item i.icon:before{
	/* ใช้ :before ของ fontawesome เดิมอยู่แล้ว เราไม่แตะ */
}

/* วงกลมพื้นหลัง (ใช้ pseudo อีกชั้นด้วย filter/เงา) */
.post-action-item i.icon::after{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: rgba(0,0,0,.06);
	z-index: -1;
}

/* ปุ่ม ... และปุ่มลบให้ icon 20px ตามเดิม */
.post-actions > a i.icon,
.button-delete-post i.icon{
	font-size: 20px;
}

