/* Names Prompt Generator Styles - Coherente con otros plugins */

.ppg-wrapper { 
    max-width: 920px; 
    margin: 0 auto; 
    padding: 18px; 
    background: transparent; 
}

.ppg-title { 
    font-size: 20px; 
    margin-bottom: 12px; 
}

.ppg-row { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
    margin-bottom: 10px; 
}

.ppg-row label { 
    width: 160px; 
    font-weight: 600; 
}

.ppg-row select, 
.ppg-row input { 
    flex: 1; 
    padding: 8px; 
    border-radius: 6px; 
    border: 1px solid #ddd; 
    background: #fff; 
}

.ppg-actions { 
    display: flex; 
    gap: 8px; 
    margin-top: 12px; 
}

.ppg-btn { 
    padding: 8px 12px; 
    border-radius: 6px; 
    border: none; 
    cursor: pointer; 
    background: #2b6cb0; 
    color: #fff; 
    text-decoration: none; 
    display: inline-block; 
}

.ppg-output { 
    white-space: pre-wrap; 
    background: #fff; 
    padding: 12px; 
    border: 1px solid #eee; 
    margin-top: 12px; 
    border-radius: 6px; 
    min-height: 200px; 
    font-family: monospace; 
    font-size: 13px; 
    color: #111; 
}

@media (max-width: 600px) { 
    .ppg-row { 
        flex-direction: column; 
        align-items: stretch; 
    } 
    .ppg-row label { 
        width: auto; 
    } 
}