/*
Theme Name: ByteFlow Theme v1.1
Theme URI: https://byteflow.ai
Author: ByteFlow Team
Author URI: https://byteflow.ai
Description: WordPress wrapper for Next.js ByteFlow application
Version: 1.0.0
License: GPL v2 or later
Text Domain: byteflow
*/

/* Force Next.js images and elements to be visible - fixes opacity:0 issue */
img {
    opacity: 1 !important;
}

/* Force containers with opacity:0 to be visible for images */
div[style*="opacity:0"] img,
div[style*="opacity: 0"] img {
    opacity: 1 !important;
}

/* Make parent containers visible if they contain images */
div[style*="opacity:0"]:has(img),
div[style*="opacity: 0"]:has(img) {
    opacity: 1 !important;
}

/* Ensure canvas elements are visible for 3D scenes */
canvas {
    opacity: 1 !important;
}