.n8n-ai-generator-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

.n8n-ai-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

.n8n-ai-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.n8n-ai-form button {
    padding: 0.5rem 1.2rem;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.n8n-ai-form button:hover {
    background-color: #005f8d;
}

.n8n-ai-image-result {
    text-align: center;
}

.n8n-ai-image-result img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.n8n-ai-loading {
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
    font-size: 14px;
    color: #666;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.style-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.style-selector label {
    min-width: 80px;
}

.style-selector select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}