.textarea-container {
    width: 100%;
    max-width: 700px;
    position: relative;
}

textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    line-height: 1.6;
    box-sizing: border-box; /* Important for padding and width calculation */
    transition: border-color 0.3s, box-shadow 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#lineCharCounter {
    text-align: right;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
    font-family: monospace;
}
