/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 18 2025 | 10:46:25 */
/* 1. 隐藏主题筛选器中原生的 radio 圆点 */
.stm-filter-pro-options-list label input[type="radio"] {
    display: none;
}

/* * 2. 当 radio 被选中时，为它旁边的 .option-box 添加样式 
 * (这会模仿原版 checkbox 被选中时的效果)
 */
.stm-filter-pro-options-list label input[type="radio"]:checked + .option-box {
    /* * 你需要在这里复制原版 checkbox 被选中时的样式。
     * 通常是边框颜色、背景颜色或阴影。
     *
     * 下面是一个示例，你需要把 #007cff 替换成你的主题高亮色。
     */
    border-color: #007cff; 
    box-shadow: 0 0 5px rgba(0, 124, 255, 0.5); /* 示例：添加一点辉光 */
}