/* ── 触摸交互支持 ── */

/* 取消移动端点击蓝色高亮 */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* 按钮点击回弹效果兜底 */
.nav-item:active, .post-submit:active, .action-btn:active {
  opacity: 0.7;
  transform: scale(0.95);
}

/* 更好的图标点击区域 */
button {
  padding: 8px;
  cursor: pointer;
}
