/**
 * Public CSS
 */

.aiwyp-import-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-left: 4px solid #2271b1;
    border-radius: 4px;
    padding: 12px 15px;
    margin: 20px 0;
    font-size: 14px;
    color: #1e1e1e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    animation: aiwyp-fadeIn 0.5s ease;
}

.aiwyp-import-info::before {
    content: '📦';
    margin-right: 8px;
    font-size: 16px;
}

@keyframes aiwyp-fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}