/* 这里的选择器需要根据实际渲染的HTML结构调整 */
/* 曲线救国
恢复会话的时候，用户反馈按钮不显示。测试发现，如果存在一个type=run的step作为父级，就会显示。。
但是页面就会出现一个run step，通过css隐藏这个step。（是在想不到方法了，网上没有资料//TODO）
*/
div[data-step-type="run"] {
    display: none !important;
}

body {
    /* 背景图片配置 */
    background-image: url("/favicon1.png");  /* 指向 public 目录下的图片 */
    background-repeat: no-repeat;             /* 不重复 */
    background-size: cover;                   /* 覆盖整个页面 */
    background-position: center;              /* 居中显示 */
    background-attachment: fixed;            /* 滚动时背景固定 */
    /* 叠加半透明遮罩，避免图片干扰文本可读性 */
    background-color: rgba(4, 204, 87, 0.9); /* 浅绿遮罩，与 theme 背景色呼应 */
    background-blend-mode: overlay;           /* 图片与遮罩混合 */

}
