/* hm-forum forum-editor — סרגל עיצוב + בורר אימוג'ים */
.hm-fe-wrap { position: relative; }
.hm-fe-toolbar {
	display: flex; flex-wrap: wrap; gap: 4px;
	padding: 6px; margin-bottom: 6px;
	background: #f3f5f7; border: 1px solid #dfe3e8; border-radius: 10px 10px 0 0;
	border-bottom: none;
}
.hm-fe-btn {
	min-width: 34px; height: 32px; padding: 0 8px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff; border: 1px solid #dfe3e8; border-radius: 7px;
	font-size: 16px; line-height: 1; cursor: pointer; color: #1f3b44;
	transition: background .12s, border-color .12s;
}
.hm-fe-btn:hover { background: #eef6f7; border-color: #1a98a0; }
.hm-fe-btn.hm-fe-b { font-weight: 800; }
.hm-fe-btn.hm-fe-i { font-style: italic; font-family: Georgia, serif; }
.hm-fe-wrap textarea[name="body"] { border-radius: 0 0 10px 10px; }

/* פאנל אימוג'ים */
.hm-fe-emoji-panel {
	position: absolute; z-index: 50; top: 44px; inset-inline-end: 6px;
	width: 300px; max-height: 220px; overflow-y: auto;
	display: grid; grid-template-columns: repeat(8, 1fr); gap: 2px;
	padding: 8px; background: #fff; border: 1px solid #dfe3e8;
	border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.hm-fe-emoji-panel[hidden] { display: none; }
.hm-fe-emoji-item {
	border: none; background: transparent; font-size: 20px; line-height: 1;
	padding: 5px 0; cursor: pointer; border-radius: 6px;
}
.hm-fe-emoji-item:hover { background: #eef6f7; }
@media (max-width: 480px) { .hm-fe-emoji-panel { width: calc(100vw - 40px); grid-template-columns: repeat(7, 1fr); } }
