/* URL 工具页面专属布局样式。 */
.url-toolbar {
    min-height: 42px;
    border-bottom: 1px solid #e3e7eb;
}

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

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

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

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

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

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

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

.cm-s-tool-light span.cm-url-encoded {
    padding: 1px 0;
    border-radius: 2px;
    background: #e7f5ef;
    color: #007a4d;
    font-weight: 600;
}

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

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

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