.tool-section{
    padding:60px 0;
}

.tool-section .container{
    max-width:1200px;
    margin:auto;
}

#jsonInput,
#jsonOutput{

    width:100%;
    min-height:320px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:15px;

    font-size:15px;

    font-family:Consolas, monospace;

    resize:vertical;

    margin-bottom:20px;

    outline:none;

    box-sizing:border-box;
}

.tool-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:20px;

}

.tool-buttons button{

    background:#2563eb;

    color:#fff;

    border:none;

    padding:12px 22px;

    border-radius:8px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.tool-buttons button:hover{

    background:#1d4ed8;

}

#status{

    margin-top:15px;

    font-weight:bold;

    font-size:16px;

}