/* 测试区域整体样式 */
#test-content {
    padding: 20px;
    margin: 20px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 选择测试类型下拉框样式 */
#test-type {
    padding: 8px;
    margin-top: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 200px;
}

/* 代码输入区域文本域样式 */
#code-input {
    width: 100%;
    height: 50px;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: vertical;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.5;
    color: #333;
}

/* 测试结果显示区域样式 */
#result-display {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-height: 50px;
    text-align: left;
    white-space: pre-wrap;
    overflow: auto;
}

/*!* 执行测试按钮样式 *!*/
/*#test-button {*/
/*    background-color: #007BFF;*/
/*    color: white;*/
/*    padding: 10px 20px;*/
/*    border: none;*/
/*    border-radius: 3px;*/
/*    cursor: pointer;*/
/*    margin-top: 10px;*/
/*}*/

/*!* 执行测试按钮悬停样式 *!*/
/*#test-button:hover {*/
/*    background-color: #0056b3;*/
/*}*/

/*!* 执行测试按钮点击样式 *!*/
/*#test-button:active {*/
/*    background-color: #003d85;*/
/*}*/

/* 隐藏代码输入框滚动条 */
#code-input::-webkit-scrollbar {
    display: none;
}

/*#code-input {*/
/*    -ms-overflow-style: none; !* Internet Explorer 10+ *!*/
/*    scrollbar-width: none; !* Firefox *!*/
/*}*/

/* 隐藏测试结果显示区域滚动条 */
#result-display::-webkit-scrollbar {
    display: none;
}

#result-display {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}