/*
 * 全局统一的「×」关闭按钮（close-button.css）
 * 精准命中无专属样式的裸 × 关闭按钮（button[aria-label="关闭"]），
 * 已有专属样式/含图标的按钮（.engagement-close 等）不受影响。
 * 新增弹窗只要用 aria-label="关闭" 的 × 按钮即可自动获得统一样式。
 */
button[aria-label="关闭"]:not(.engagement-close){
  display:inline-grid;
  place-items:center;
  flex:none;
  min-width:32px;
  min-height:32px;
  padding:0 8px;
  border:0;
  border-radius:10px;
  background:#f1f5f9;
  color:#64748b;
  font-size:17px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:background .14s ease,color .14s ease,transform .14s ease;
}
button[aria-label="关闭"]:not(.engagement-close):hover{
  background:#e2e8f0;
  color:#0f172a;
  transform:translateY(-1px);
}
button[aria-label="关闭"]:not(.engagement-close):focus-visible{
  outline:2px solid #2563eb;
  outline-offset:2px;
}
