#cprsTxt textarea {
    width: 100%;
    height: 150px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}
#cprsTxt textarea:focus { border-color: #1a73e8; outline: none; }
#cprsTxt label { display: block; margin-bottom: 8px; font-size: 14px; cursor: pointer; }
#cprsTxt input[type="radio"] { margin-right: 8px; }
#cprsTxt button {
    background-color: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s, transform 0.2s;
}
#cprsTxt form {
    margin-top: 40px;
}
#cprsTxt button:hover { background-color: #155ab6; transform: translateY(-2px); }
#cprsTxt .compress-output-box button {
    background: #0da35d;
    padding: 8px 12px;
    margin: 0 0 35px;
}
#cprsTxt .compress-output-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 20px;
}
#cprsTxt .compress-output-box textarea {
    width: 100%;
    height: 180px;
    margin-bottom: 8px;
}
#cprsTxt .info-box {
    margin-top: 15px;
    padding: 15px;
    border-left: 4px solid #1a73e8;
    background-color: #eef3fb;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
}
#cprsTxt .info-box span { font-weight: bold; }
@media (max-width: 600px) {
    #cprsTxt button { width: 100%; }
}