/* 容器样式 */
.cfs-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* 标题样式 */
.cfs-container h3 {
    margin: 15px 0 10px;
    font-size: 16px;
    font-weight: 600;
}

/* 复选框网格 */
.cfs-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cfs-checkbox-item {
    width: 25%;
    padding: 5px 10px;
    box-sizing: border-box;
    cursor: pointer;
}

.cfs-clear {
    clear: both;
    width: 100%;
}

/* 已选列表 */
.cfs-sortable-list {
    min-height: 50px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px dashed #ccc;
    background: #f9f9f9;
}

.cfs-sortable-list li {
    position: relative;
    margin: 5px 0;
    padding: 8px 30px 8px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: move;
}

.cfs-remove {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.cfs-remove:hover {
    color: #cc0000;
}

.cfs-sortable-placeholder {
    border: 1px dashed #aaa;
    background: #f0f0f0;
    height: 35px;
    margin: 5px 0;
}

/* 操作按钮 */
.cfs-actions {
    margin: 20px 0;
}

.cfs-generate-btn {
    padding: 8px 16px;
    background-color: #2271b1;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.cfs-generate-btn:hover {
    background-color: #135e96;
}

/* 生成内容区域 */
.cfs-result {
    margin-top: 20px;
}

.cfs-generated-content {
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    min-height: 30px;
    line-height: 1.6;
}
