/**
 * Group Custom Width Styles
 * Applies to both editor and frontend
 */

/* Ensure centered blocks respect their max-width */
.wp-block-group[style*="max-width"] {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure responsive behavior */
.wp-block-group[style*="max-width"] {
    width: 100%;
    box-sizing: border-box;
}

/* Optional: Add some visual feedback in the editor */
.editor-styles-wrapper .wp-block-group[style*="max-width"] {
    /* You can add editor-specific styles here if needed */
}