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;
    }
}

.row{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.Juhj-card_buttons{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

#new{
    align-items: flex-start;
    & .Juhj-output{
        width: 100%;
        min-height:3rem; 
        max-height: 100rem;
        overflow: auto;
    }
}

textarea{
    height: 30rem;
}

.Juhj-output#output-css{
    max-height: 30rem;
    font-size: 1rem;
    overflow: auto;
}

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