.text-generator{
    padding:60px 20px;
}

.generator-wrapper{
    max-width:1100px;
    margin:auto;
}

.cg-input{
    width:100%;
    min-height:180px;
    border:2px solid #e5e5e5;
    border-radius:16px;
    padding:20px;
    font-size:18px;
    resize:vertical;
    outline:none;
}

.cg-input:focus{
    border-color:#000;
}

.cg-style-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    padding:18px 20px;
    border:1px solid #eee;
    border-radius:14px;

    margin-top:15px;
}

.cg-style-name{
    width:180px;
    font-weight:700;
}

.cg-style-output{
    flex:1;
    word-break:break-word;
    font-size:20px;
}

.cg-copy-btn{
    background:#000;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
}

.cg-copy-btn:hover{
    opacity:.85;
}

@media(max-width:768px){

    .cg-style-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .cg-style-name{
        width:100%;
    }

}

.cg-style-content{
    flex:1;
}

.cg-style-output{
    margin-top:8px;
    line-height:1.6;
}