.container {
    display: flex;
    width: 100%;
    height: 500px;
}

#json-input {
    width: 50%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

#json-output {
    width: 50%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    overflow-y: auto; /* Enable scroll for large JSON structures */
    background-color: #f4f4f4;
}

.tree {
    list-style-type: none;
    font-family: Arial, sans-serif;
}

.tree ul {
    list-style-type: none;
    padding-left: 20px;
    margin: 0;
}

.tree li {
    margin: 5px 0;
}

.tree li span {
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 3px;
    display: inline-block;
}

.tree li span:hover {
    background-color: #f0f0f0;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 40px;
}

button {
    margin-right: 10px;
}
