#text-analyzer-ui {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

#text-analyzer-ui h3 {
    margin: 0 0 1rem;
    color: #2c3e50;
    text-align: center;
}

#ta-input {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 2px solid #e74c3c;
    font-size: 16px;
    box-sizing: border-box;
    resize: vertical;
    min-height: 140px;
}

.ta-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.ta-btn:hover {
    background: #333;
}

#ta-result {
    margin-top: 20px;
    font-size: 17px;
}

.ta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.ta-error {
    color: #e74c3c;
    text-align: center;
    margin-top: 12px;
}
