/* 布局XML转findView页面专用样式 */
.options-section {
    margin: 15px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #eee;
}

.checkbox-label {
    display: inline-block;
    margin-right: 20px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: middle;
}

.button-section {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

/* 移除旧的result-output样式，使用公共的code-display样式 */
.code-display {
    height: auto; /* 覆盖base.css的设置 */
    min-height: auto;
    white-space: pre-wrap; /* 强制覆盖base.css设置 */
    word-wrap: break-word;
    word-break: break-word; /* 更改为break-word使单词正常换行 */
    overflow-x: hidden;
    overflow-y: visible; /* 确保垂直方向不出现滚动条 */
}

textarea {
    font-family: Consolas, monospace;
    font-size: 14px;
    line-height: 1.4;
    resize: vertical;
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

#xml-input {
    min-height: 300px;
    overflow-y: auto;
} 