
/* Product Image Style */
#smartwoo_generate{line-height: 20px;}
.smartwoo-modal-content h2{line-height: 12px;   margin-bottom: 20px;}
.smartwoo-modal-content p,
.smartwoo-box p{margin-bottom: 5px;}
.smartwoo-modal-content label{width: 49%;}
.smartwoo-modal-content select{width: 49%;}
#smartwoo_generate_image_btn {line-height: 20px;}
#smartwoo_open_modal {margin: 10px;line-height: 20px;}
#smartwoo-image-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}
.smartwoo-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;
}

/* Product Meta Box Style */
#smartwoo_output {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}
.smartwoo-prompt-section {
    margin-bottom: 15px;
}
.smartwoo-tip {
    color: #666;
    font-size: 12px;
    font-style: italic;
}
#smartwoo_prompt {
    font-size: 13px;
    line-height: 1.5;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}
.smartwoo-notification {
    background: #00a32a;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}