/* JSONPath 工具页专用样式（不改动公共样式） */

.tool-jsonpath .jsonpath-toolbar {
    margin: 12px 0 0;
}

.tool-jsonpath .jsonpath-expr-row {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 60%;
    max-width: 100%;
    box-sizing: border-box;
}

.tool-jsonpath .jsonpath-expr-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 34px;
    margin: 0;
    font-size: 0.925rem;
    color: #555;
    line-height: 34px;
    white-space: nowrap;
}

.tool-jsonpath .jsonpath-expr-input {
    flex: 1;
    min-width: 0;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.925rem;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    line-height: 34px;
}

.tool-jsonpath .jsonpath-expr-input:focus {
    outline: none;
    border-color: #8ab4f8;
    box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.25);
}

.tool-jsonpath .jsonpath-actions {
    margin-top: 10px;
}

.tool-jsonpath .jsonpath-match-meta {
    margin-left: auto;
    font-size: 0.825rem;
    font-weight: 400;
    color: #888;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tool-jsonpath .jsonpath-expr-row {
        width: 100%;
    }
}
