
.name-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.857rem;
    margin-bottom: 1rem;
    align-items: center;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 0.429rem;
    white-space: nowrap;
}

.control-group label {
    font-size: 0.929rem;
    color: #4a5568;
}

.control-group select,
.control-group input {
    padding: 0.429rem 0.714rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.571rem;
    font-size: 0.929rem;
    background: white;
    min-width: 8rem;
}

.btn-generate {
    padding: 0.429rem 1.143rem;
    background: #3a8ffe;
    color: white;
    border: none;
    border-radius: 0.571rem;
    font-size: 0.929rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-generate:hover {
    background: #1a73e8;
}

.name-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(6rem, 1fr));
    gap: 0.714rem;
    margin-top: 0.714rem;
}

.name-item {
    background: #f8fafc;
    padding: 0.571rem;
    text-align: center;
    border-radius: 0.571rem;
    border: 1px solid #edf2f7;
    font-size: 1rem;
    color: #2d3748;
    word-break: break-all;
    cursor: pointer;
    transition: background-color 0.2s;
}

.name-item:hover {
    background-color: #e6f4ff;
    color: #1a73e8;
}