/* General Styles */
.wtng-container {
    text-align: center;
    background: #264653;
    color: #e9c46a;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Gender Selection Buttons */
.wtng-buttons button {
    background: #2a9d8f;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
/* H2 Heading */
.wtng-container h2 {
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.wtng-buttons button:hover,
.wtng-buttons button.active {
    background: #219ebc;
    transform: scale(1.05);
}

/* Generate Button */
#generate-btn {
    background: #e76f51;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s, transform 0.2s;
}

#generate-btn:hover {
    background: #f4a261;
    transform: scale(1.1);
}

/* Results Section */
.wtng-results {
    margin-top: 20px;
    padding: 10px;
}

.wtng-results h3 {
    color: #f4a261;
    border-bottom: 2px solid #e9c46a;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* Name List */
.wtng-results ul {
    list-style-type: none;
    padding: 0;
}

.wtng-results li {
    background: #2a9d8f;
    color: white;
    padding: 8px 12px;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: background 0.3s;
}

.wtng-results li:hover {
    background: #219ebc;
}

/* Copy Button */
.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #e9c46a;
    transition: color 0.3s;
}

.copy-btn:hover {
    color: #f4a261;
}
