/* Base64 工具左右输入输出对比布局。 */
.base64-toolbar {
    min-height: 42px;
    border-bottom: 1px solid #e3e7eb;
}

.base64-workspace {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 584px;
}

.base64-editor-panel {
    min-width: 0;
}

.base64-editor-panel:first-child {
    border-right: 1px solid #e3e7eb;
}

.base64-panel-title {
    height: 34px;
    padding: 8px 10px;
    border-bottom: 1px solid #e3e7eb;
    background: #f7f8fa;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.base64-editor-panel .CodeMirror {
    height: 550px;
    border-width: 0;
}

.base64-output-panel .CodeMirror {
    background: #fbfcfd;
    line-height: 1.65;
}

.base64-output-panel .CodeMirror-cursor {
    display: none;
}

@media (max-width: 760px) {
    .base64-workspace {
        grid-template-columns: 1fr;
    }

    .base64-editor-panel:first-child {
        border-right: 0;
        border-bottom: 1px solid #e3e7eb;
    }

    .base64-editor-panel .CodeMirror {
        height: 400px;
        min-height: 400px;
    }
}
