/* 自定义复选框样式修复 */

/* 确保勾选框可见 */
.custom-checkbox {
    opacity: 1 !important;
    position: static !important;
    cursor: pointer;
    width: 16px !important;
    height: 16px !important;
    accent-color: #667eea !important;
    margin: 0 !important;
}

/* 确保表格中的勾选框正确对齐 */
table .custom-checkbox {
    margin: 0 auto !important;
    display: block !important;
}

/* 全选复选框样式 */
#selectAll {
    accent-color: #4299e1 !important;
}

/* 信息列表中的勾选框 */
.infoCheckbox {
    accent-color: #48bb78 !important;
}

/* 操作日志中的勾选框 */
.logCheckbox {
    accent-color: #667eea !important;
}

/* 确保勾选框在各种状态下都可见 */
.custom-checkbox:checked {
    accent-color: #3182ce !important;
}

.custom-checkbox:focus {
    outline: 2px solid #667eea !important;
    outline-offset: 2px !important;
}

.custom-checkbox:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}
