/* Container Styles */
#gng-container {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 15px;
    background-color: #f5deb3; /* Light brown background */
    color: #2c2c2c;
    text-align: center;
    max-width: 900px; /* Increased max-width for better desktop display */
    margin: 0 auto; /* Center the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Cinzel', serif;
}

/* Heading Styles */
#gng-container h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #8b4513; /* Saddle brown color */
}

/* Gender Selection Styles */
.gender-selection {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Gender Button Styles */
.gender-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #d2691e;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.gender-button.active,
.gender-button:hover {
    background-color: #a0522d; /* Dark orange background on hover */
    transform: scale(1.05);
}

/* Generate Button Styles */
#generate-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #218838; /* Lime green background */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#generate-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Name Output Styles */
#name-output {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px; /* Space between columns */
}

.name-column {
    flex: 1; /* Ensures both columns take up equal space */
    background-color: #fff8dc; /* Cornsilk background */
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Name Heading Styles */
#name-output h3 {
    font-size: 1.5em;
    color: #8b4513; /* Saddle brown color */
    border-bottom: 2px solid #8b4513;
    padding-bottom: 10px;
}

/* Name List Styles */
#name-output ul {
    list-style: none;
    padding: 0;
}

#name-output li {
    margin: 10px 0;
    font-size: 1.2em;
    color: #8b4513; /* Saddle brown color */
    background-color: #ffe4b5; /* Moccasin background */
    padding: 10px;
    border-radius: 5px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Copy Button Styles */
.copy-button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    background-color: #d2691e; /* Chocolate background */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.copy-button:hover {
    background-color: #a0522d; /* Sienna background on hover */
    transform: scale(1.1);
}
