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{
    align-items: flex-start;
}

.input-block{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.row-a{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    & .Juhj-btn.radio{
        display: flex;
        justify-content: center;
        border-radius: 6px;
    }
}

.Juhj-output{
    min-height: 3rem;
    width: 100%;
}

.Juhj-card_buttons{
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    & button{
        height: 3rem;
        padding: 0rem  0.5rem !important;
        font-size: 1rem !important;
    }
}

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

#output{
    text-wrap: wrap;
    max-height: 50rem;
    overflow: auto;
}