main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;

    & .content-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}

@media (orientation: landscape) {
    .content-container {
        max-width: 60rem;
        padding: 2rem;
    }
}

@media (orientation: portrait) {
    .content-container {
        max-width: 98rem;
        padding: 1rem;
    }
}

.Juhj-card_buttons,
.Juhj-card_buttons-action {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.Juhj-input#json-input {
    min-height: 30rem;
}

.Juhj-output#json-output {
    min-height: 3rem;
    max-height: 30rem;
    overflow: auto;
    white-space: pre-wrap;
    font-size: 1rem;
    width: 100%;
}

.display-off {
    display: none;
}

#output-card{
    display: flex;
    align-items: flex-start;
}

.stats{
    color: var(--text-dim);
}