.option-input{
    width: 49%;
}
.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.tool-footer{
    justify-content: center;
    margin-top: 16px;
}
.output-container{
    padding: 24px;
    margin: auto;
    max-height: 558px;
    max-width: 920px;
    border-radius: 16px;
    background: #FFFFFF;
    margin-top: 32px;
    box-shadow: 0px 8px 16px 0px #8067B729;

    border: 1px solid #E2E0EB
}
.output-container .output-header{
    padding-bottom: 22px;
}
.versions{
    padding-left: 0;
}
.poem-input{
    border-radius: 10px;
    border: 1px solid var(--lightgray);
    background: #fff;
    resize: none;
    padding: 10px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 6px;
}
.poem-input:focus{
    border: 1px solid #2F1F6A
}
.input-count-container{
    position: absolute;
    right: 10px;
    color: #B6B1CB;
    font-weight: 400;
    font-size: 14px;
    bottom: 20px;
}
.poem-input-box{
    padding: 24px;
}
.poem-sample-btn{
    padding: 6px 10px 6px 10px;
    border-radius: 6px;
    background: #FFFFFF;
    border: 1px solid #E2E0EB;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #6A6097;
    margin-left: auto;
}
.input__loader__progress{
    bottom: 60px;
}
.margin-left-auto{
    margin-left: auto;
}
@media screen and (max-width: 580px) {
    .option-input{
        width: 100%;
    }
}