/**
 * Cognitive Studio Window System Styles
 * ITERATION 191: Styles for floating windows
 * This file will be auto-injected by the window manager,
 * but we include it here for WordPress optimization
 */

/* The window manager injects its own styles, but we can add overrides here */

/* WordPress-specific adjustments */
.agent-studio-window {
    /* Ensure windows appear above WordPress elements */
    z-index: 999999 !important;
}

.agent-studio-taskbar {
    /* Ensure taskbar appears above everything */
    z-index: 999998 !important;
}

/* Hide old console when floating windows are active */
body.floating-windows-active .persistent-console-section {
    display: none !important;
}

/* Smooth transition when switching between console modes */
.console-toggle-btn {
    transition: all 0.3s ease;
}

/* Additional WordPress theme compatibility */
.agent-studio-window * {
    box-sizing: border-box;
}

/* Ensure floating windows work with your fullscreen setup */
.studio-wrapper.has-floating-windows {
    /* Windows will be position:fixed, so this doesn't need to contain them */
    overflow: visible !important;
}

