/* style.css */

#nameGenerator {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#nameGenerator select,
#nameGenerator input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#nameGenerator button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#nameGenerator button:hover {
    background-color: #006799;
}

#generated-name {
    margin-top: 15px;
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Enhanced responsiveness and aesthetics in style.css */

@media only screen and (max-width: 600px) {
    #nameGenerator {
        width: 100%;
        padding: 10px;
    }
}

#nameGenerator input[type="text"]:focus,
#nameGenerator select:focus {
    border-color: #0073aa;
    outline: none;
}

