.tng-generator {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.tng-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tng-field {
    flex: 1;
    min-width: 200px;
}

.tng-btn {
    background: #6a5acd;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.tng-names-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tng-names-table td, .tng-names-table th {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.tng-names-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tng-error {
    color: #d32f2f;
    padding: 15px;
    background: #ffebee;
    border-radius: 5px;
}