/* css/pages/english-test-creation-azota.css */

#english-test-editor-container {
    display: flex;
    gap: 20px;
    width: 100%;
    min-height: 80vh;
    /* Đảm bảo 2 cột có chiều cao tối thiểu */
}

.editor-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    /* Ngăn nội dung tràn ra ngoài */
}

.pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--color-border);
}

.pane-header h3 {
    margin: 0;
    font-size: 1.1em;
    color: var(--color-text-primary);
}

#word-content-editor-pane #word-content-editor {
    flex-grow: 1;
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    resize: none;
}

#parsed-questions-pane #english-test-grid {
    flex-grow: 1;
    overflow-y: auto;
    /* Cho phép cuộn danh sách câu hỏi */
    padding: 15px;
}