/**
 * Public-facing styles for the WP AI Builder plugin.
 */

/* 
 * These styles affect the front-end display of AI-generated content
 * and are minimal since most styling is handled by the theme
 */

/* Basic styling for AI-generated content blocks */
.wp-ai-builder-content {
    margin-bottom: 1.5em;
}

/* Optional highlight for AI-generated content (for testing) */
.wp-ai-builder-content.is-highlighted {
    border-left: 3px solid #2271b1;
    padding-left: 1em;
}

/* Responsive styling for AI-generated content */
@media screen and (max-width: 768px) {
    .wp-ai-builder-content {
        margin-bottom: 1em;
    }
}
