@keyframes passing-through{0%{opacity:0;transform:translateY(40px)}30%,70%{opacity:1;transform:translateY(0px)}100%{opacity:0;transform:translateY(-40px)}}@keyframes slide-in{0%{opacity:0;transform:translateY(40px)}30%{opacity:1;transform:translateY(0px)}}@keyframes pulse{0%{transform:scale(1)}10%{transform:scale(1.1)}20%{transform:scale(1)}}.dropzone,.dropzone *{box-sizing:border-box}.dropzone{min-height:150px;border:1px solid rgba(0,0,0,.8);border-radius:5px;padding:20px 20px}.dropzone.dz-clickable{cursor:pointer}.dropzone.dz-clickable *{cursor:default}.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message *{cursor:pointer}.dropzone.dz-started .dz-message{display:none}.dropzone.dz-drag-hover{border-style:solid}.dropzone.dz-drag-hover .dz-message{opacity:.5}.dropzone .dz-message{text-align:center;margin:3em 0}.dropzone .dz-message .dz-button{background:none;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;outline:inherit}.dropzone .dz-preview{position:relative;display:inline-block;vertical-align:top;margin:16px;min-height:100px}.dropzone .dz-preview:hover{z-index:1000}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview.dz-file-preview .dz-image{border-radius:20px;background:#999;background:linear-gradient(to bottom, #eee, #ddd)}.dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.dropzone .dz-preview.dz-image-preview{background:#fff}.dropzone .dz-preview.dz-image-preview .dz-details{transition:opacity .2s linear}.dropzone .dz-preview .dz-remove{font-size:14px;text-align:center;display:block;cursor:pointer;border:none}.dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview .dz-details{z-index:20;position:absolute;top:0;left:0;opacity:0;font-size:13px;min-width:100%;max-width:100%;padding:2em 1em;text-align:center;color:rgba(0,0,0,.9);line-height:150%}.dropzone .dz-preview .dz-details .dz-size{margin-bottom:1em;font-size:16px}.dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.dropzone .dz-preview .dz-details .dz-filename:hover span{border:1px solid rgba(200,200,200,.8);background-color:rgba(255,255,255,.8)}.dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid transparent}.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span{background-color:rgba(255,255,255,.4);padding:0 .4em;border-radius:3px}.dropzone .dz-preview:hover .dz-image img{transform:scale(1.05, 1.05);filter:blur(8px)}.dropzone .dz-preview .dz-image{border-radius:20px;overflow:hidden;width:120px;height:120px;position:relative;display:block;z-index:10}.dropzone .dz-preview .dz-image img{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview.dz-error .dz-error-mark{opacity:1;animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview .dz-success-mark,.dropzone .dz-preview .dz-error-mark{pointer-events:none;opacity:0;z-index:500;position:absolute;display:block;top:50%;left:50%;margin-left:-27px;margin-top:-27px;background:rgba(0,0,0,.8);border-radius:50%}.dropzone .dz-preview .dz-success-mark svg,.dropzone .dz-preview .dz-error-mark svg{display:block;width:54px;height:54px;fill:#fff}.dropzone .dz-preview.dz-processing .dz-progress{opacity:1;transition:all .2s linear}.dropzone .dz-preview.dz-complete .dz-progress{opacity:0;transition:opacity .4s ease-in}.dropzone .dz-preview:not(.dz-processing) .dz-progress{animation:pulse 6s ease infinite}.dropzone .dz-preview .dz-progress{opacity:1;z-index:1000;pointer-events:none;position:absolute;height:20px;top:50%;margin-top:-10px;left:15%;right:15%;border:3px solid rgba(0,0,0,.8);background:rgba(0,0,0,.8);border-radius:10px;overflow:hidden}.dropzone .dz-preview .dz-progress .dz-upload{background:#fff;display:block;position:relative;height:100%;width:0;transition:width 300ms ease-in-out;border-radius:17px}.dropzone .dz-preview.dz-error .dz-error-message{display:block}.dropzone .dz-preview.dz-error:hover .dz-error-message{opacity:1;pointer-events:auto}.dropzone .dz-preview .dz-error-message{pointer-events:none;z-index:1000;position:absolute;display:block;display:none;opacity:0;transition:opacity .3s ease;border-radius:8px;font-size:13px;top:130px;left:-10px;width:140px;background:#b10606;padding:.5em 1em;color:#fff}.dropzone .dz-preview .dz-error-message:after{content:"";position:absolute;top:-6px;left:64px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #b10606}/*# sourceMappingURL=dropzone.css.map */
/**
 * Deep Animations - CSS Import Bundle
 *
 * Import order matters:
 * 1. timing.css - CSS custom properties (variables)
 * 2. animations.css - @keyframes definitions
 * 3. utilities.css - Utility classes that use the above
 *
 * Source: @deep/animation module (DeepModuleAnimation)
 */

/**
 * @deep/animations - Timing & Easing Constants
 * 
 * Purpose: Standardized timing values for consistent animation feel across Deep
 * Usage: Import this file and use CSS custom properties
 */

:root {
    /* ================================================================
       DURATION CONSTANTS
       ================================================================ */
    
    /* Micro animations (instant feedback) */
    --deep-anim-instant: 50ms;
    --deep-anim-micro: 100ms;
    
    /* Fast animations (quick transitions) */
    --deep-anim-fast: 200ms;
    
    /* Normal animations (standard speed) */
    --deep-anim-normal: 300ms;
    
    /* Slow animations (deliberate movement) */
    --deep-anim-slow: 600ms;
    
    /* Very slow (dramatic effects) */
    --deep-anim-dramatic: 1000ms;
    
    /* Pulse/loop durations */
    --deep-pulse-duration: 3s;
    --deep-pulse-fast: 2s;
    --deep-pulse-slow: 4s;
    
    /* Spin duration */
    --deep-spin-duration: 1s;
    
    /* ================================================================
       EASING FUNCTIONS
       ================================================================ */
    
    /* Standard easing */
    --deep-ease: ease;
    --deep-ease-in: ease-in;
    --deep-ease-out: ease-out;
    --deep-ease-in-out: ease-in-out;
    
    /* Cubic bezier easing (custom curves) */
    --deep-ease-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --deep-ease-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
    --deep-ease-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
    --deep-ease-quint: cubic-bezier(0.23, 1, 0.32, 1);
    --deep-ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --deep-ease-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
    --deep-ease-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Material Design easing */
    --deep-ease-material: cubic-bezier(0.4, 0, 0.2, 1);
    --deep-ease-material-decel: cubic-bezier(0, 0, 0.2, 1);
    --deep-ease-material-accel: cubic-bezier(0.4, 0, 1, 1);
    
    /* Bounce easing */
    --deep-ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Elastic easing */
    --deep-ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* ================================================================
       DELAY CONSTANTS
       ================================================================ */
    
    /* Stagger delays (for sequential animations) */
    --deep-delay-stagger-1: 50ms;
    --deep-delay-stagger-2: 100ms;
    --deep-delay-stagger-3: 150ms;
    --deep-delay-stagger-4: 200ms;
    --deep-delay-stagger-5: 250ms;
    
    /* Common delays */
    --deep-delay-none: 0ms;
    --deep-delay-short: 100ms;
    --deep-delay-medium: 300ms;
    --deep-delay-long: 500ms;
    
    /* ================================================================
       ITERATION COUNTS
       ================================================================ */
    
    --deep-iterate-once: 1;
    --deep-iterate-twice: 2;
    --deep-iterate-thrice: 3;
    --deep-iterate-infinite: infinite;
    
    /* ================================================================
       COLOR VARIABLES (for animations that use colors)
       ================================================================ */
    
    /* Glow colors */
    --deep-glow-color: #00ff00;
    --deep-glow-success: #00ff00;
    --deep-glow-warning: #ff9500;
    --deep-glow-error: #ff0000;
    --deep-glow-info: #00b8ff;
    --deep-glow-accent: #6366f1;
    
    /* Border colors */
    --deep-border-default: #334155;
    --deep-border-active: #6366f1;
    --deep-border-focus: #6366f1;
    
    /* Accent color */
    --deep-accent-color: #6366f1;
}

/* ================================================================
   HELPER COMMENT - Usage Examples
   ================================================================ */

/*
Usage Examples:

1. Apply standard fade-in with timing:
   .my-element {
       animation: deep-fade-in var(--deep-anim-fast) var(--deep-ease-out);
   }

2. Custom timing:
   .my-element {
       animation: deep-pulse var(--deep-pulse-duration) var(--deep-ease-in-out) infinite;
   }

3. Staggered animations:
   .item:nth-child(1) { animation-delay: var(--deep-delay-stagger-1); }
   .item:nth-child(2) { animation-delay: var(--deep-delay-stagger-2); }
   .item:nth-child(3) { animation-delay: var(--deep-delay-stagger-3); }

4. Custom glow color:
   .my-element {
       --deep-glow-color: #ff00ff;
       animation: deep-pulse-glow var(--deep-pulse-duration) infinite;
   }
*/

/**
 * @deep/animations - CSS Keyframe Animations
 * 
 * Purpose: GPU-accelerated CSS animations for Deep taxonomy elements
 * Architecture: Designed for hybrid CSS3D + WebGL rendering
 * 
 * Animation Categories:
 * - Entry animations (materialize, fade-in, slide, scale, zoom)
 * - Attention animations (pulse, glow, blink, heartbeat)
 * - Exit animations (fade-out, collapse, slide-out)
 * - State transitions (hover, focus, active)
 * - Utility animations (spin, bounce)
 */

/* ================================================================
   ENTRY ANIMATIONS - Object materialization
   ================================================================ */

/**
 * deep-materialize
 * Usage: Initial object appearance with scale + fade
 * Duration: 300ms (use with --deep-anim-normal)
 * Easing: ease-out
 */

@keyframes deep-materialize {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/**
 * deep-fade-in
 * Usage: Simple fade in
 * Duration: 200ms (use with --deep-anim-fast)
 */

@keyframes deep-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/**
 * deep-slide-up
 * Usage: Slide in from bottom with fade
 * Duration: 600ms (use with --deep-anim-slow)
 */

@keyframes deep-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**
 * deep-slide-in-down
 * Usage: Slide in from top
 */

@keyframes deep-slide-in-down {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/**
 * deep-slide-in-left
 * Usage: Slide in from left
 */

@keyframes deep-slide-in-left {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/**
 * deep-slide-in-right
 * Usage: Slide in from right
 */

@keyframes deep-slide-in-right {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/**
 * deep-zoom-in
 * Usage: Zoom in with fade (more dramatic than materialize)
 * Duration: 300ms
 */

@keyframes deep-zoom-in {
    from {
        opacity: 0;
        transform: scale3d(0, 0, 0);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/**
 * deep-scale-in
 * Usage: Scale in with slight overshoot (bouncy feel)
 */

@keyframes deep-scale-in {
    from {
        opacity: 0;
        transform: scale3d(0, 0, 0);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* ================================================================
   ATTENTION ANIMATIONS - Visual behaviors for taxonomy types
   ================================================================ */

/**
 * deep-pulse
 * Usage: Subtle pulsing for behavior/pulse taxonomy
 * Duration: 2-3s infinite
 */

@keyframes deep-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/**
 * deep-pulse-glow
 * Usage: Pulsing with glow effect (for active states)
 * Duration: 3s infinite
 */

@keyframes deep-pulse-glow {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 10px var(--deep-glow-color, #00ff00);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 25px var(--deep-glow-color, #00ff00);
    }
}

/**
 * deep-glow-wave
 * Usage: Animated glow intensity wave
 * Duration: 3s infinite
 */

@keyframes deep-glow-wave {
    0%, 100% {
        box-shadow: 0 0 10px var(--deep-glow-color, #00ff00);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 30px var(--deep-glow-color, #00ff00);
        filter: brightness(1.2);
    }
}

/**
 * deep-blink
 * Usage: On/off blinking for behavior/blink taxonomy
 * Duration: 1s infinite
 */

@keyframes deep-blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/**
 * deep-heartbeat
 * Usage: Double-pulse heartbeat effect
 * Duration: 1.5s infinite
 */

@keyframes deep-heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

/**
 * gradient-glow
 * Usage: Gradient text glow effect (from deep-site)
 */

@keyframes gradient-glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* ================================================================
   EXIT ANIMATIONS - Object removal
   ================================================================ */

/**
 * deep-fade-out
 * Usage: Simple fade out
 * Duration: 200ms (use with --deep-anim-fast)
 */

@keyframes deep-fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/**
 * deep-collapse
 * Usage: Scale out with fade
 * Duration: 300ms
 */

@keyframes deep-collapse {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(0, 0, 0);
    }
}

/**
 * deep-scale-out
 * Usage: Scale down and fade
 */

@keyframes deep-scale-out {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(0, 0, 0);
    }
}

/**
 * deep-slide-out-up
 * Usage: Slide out upward (notifications)
 */

@keyframes deep-slide-out-up {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/**
 * deep-slide-out-down
 * Usage: Slide out downward
 */

@keyframes deep-slide-out-down {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ================================================================
   STATE TRANSITIONS - Interactive states
   ================================================================ */

/**
 * deep-card-hover-lift
 * Usage: Hover effect for cards (marketing site only)
 * Duration: 200ms
 */

@keyframes deep-card-hover-lift {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-2px) scale(1.02);
    }
}

/**
 * deep-border-glow-in
 * Usage: Focus/active state glow
 * Duration: 200ms
 */

@keyframes deep-border-glow-in {
    from {
        border-color: var(--deep-border-default, #334155);
        box-shadow: none;
    }
    to {
        border-color: var(--deep-accent-color, #6366f1);
        box-shadow: 0 0 15px var(--deep-accent-color, #6366f1);
    }
}

/**
 * deep-border-glow-out
 * Usage: Blur/inactive state
 * Duration: 200ms
 */

@keyframes deep-border-glow-out {
    from {
        border-color: var(--deep-accent-color, #6366f1);
        box-shadow: 0 0 15px var(--deep-accent-color, #6366f1);
    }
    to {
        border-color: var(--deep-border-default, #334155);
        box-shadow: none;
    }
}

/* ================================================================
   UTILITY ANIMATIONS
   ================================================================ */

/**
 * deep-spin
 * Usage: Loading spinners
 * Duration: 1s infinite linear
 */

@keyframes deep-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/**
 * deep-bounce
 * Usage: Playful bounce (use sparingly)
 * Duration: 600ms
 */

@keyframes deep-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}

/**
 * float
 * Usage: Floating badge animation (from deep-site)
 */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/**
 * pulse-card
 * Usage: Card pulse animation (from deep-site)
 */

@keyframes pulse-card {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

/**
 * layer-pulse
 * Usage: Layer visualization pulse (from deep-site)
 */

@keyframes layer-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* ================================================================
   PERFORMANCE OPTIMIZATIONS
   ================================================================ */

/* Force GPU acceleration for animated elements */

.deep-gpu-accelerate {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Apply will-change during animation only */

.deep-will-animate {
    will-change: transform, opacity;
}

/* Remove will-change after animation completes */

.deep-animation-complete {
    will-change: auto;
}

/* ================================================================
   ACCESSIBILITY - Reduced Motion
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/**
 * @deep/animations - Utility Classes
 * 
 * Purpose: Helper classes to easily apply animations to elements
 * Usage: Add class names directly to HTML elements
 * 
 * Import order:
 * 1. timing.css (defines CSS variables)
 * 2. animations.css (defines @keyframes)
 * 3. utilities.css (applies animations via classes)
 */

/* ================================================================
   ENTRY ANIMATION UTILITIES
   ================================================================ */

.deep-animate-materialize {
    animation: deep-materialize var(--deep-anim-normal, 300ms) var(--deep-ease-out, ease-out);
}

.deep-animate-fade-in {
    animation: deep-fade-in var(--deep-anim-fast, 200ms) var(--deep-ease-out, ease-out);
}

.deep-animate-slide-up {
    animation: deep-slide-up var(--deep-anim-slow, 600ms) var(--deep-ease-out, ease-out);
}

.deep-animate-slide-in-down {
    animation: deep-slide-in-down var(--deep-anim-slow, 600ms) var(--deep-ease-out, ease-out);
}

.deep-animate-slide-in-left {
    animation: deep-slide-in-left var(--deep-anim-slow, 600ms) var(--deep-ease-out, ease-out);
}

.deep-animate-slide-in-right {
    animation: deep-slide-in-right var(--deep-anim-slow, 600ms) var(--deep-ease-out, ease-out);
}

.deep-animate-zoom-in {
    animation: deep-zoom-in var(--deep-anim-normal, 300ms) var(--deep-ease-out, ease-out);
}

.deep-animate-scale-in {
    animation: deep-scale-in var(--deep-anim-normal, 300ms) var(--deep-ease-back, cubic-bezier(0.68, -0.55, 0.265, 1.55));
}

/* ================================================================
   ATTENTION ANIMATION UTILITIES (for taxonomy behaviors)
   ================================================================ */

/* behavior/pulse */

.deep-animate-pulse {
    animation: deep-pulse var(--deep-pulse-duration, 3s) ease-in-out infinite;
}

/* behavior/pulse with glow */

.deep-animate-pulse-glow {
    animation: deep-pulse-glow var(--deep-pulse-duration, 3s) ease-in-out infinite;
}

/* Glow wave effect */

.deep-animate-glow-wave {
    animation: deep-glow-wave var(--deep-pulse-duration, 3s) ease-in-out infinite;
}

/* behavior/blink */

.deep-animate-blink {
    animation: deep-blink 1s step-end infinite;
}

/* Heartbeat effect */

.deep-animate-heartbeat {
    animation: deep-heartbeat 1.5s ease-in-out infinite;
}

/* Gradient glow (for text) */

.deep-animate-gradient-glow {
    animation: gradient-glow var(--deep-pulse-duration, 3s) ease-in-out infinite;
}

/* ================================================================
   EXIT ANIMATION UTILITIES
   ================================================================ */

.deep-animate-fade-out {
    animation: deep-fade-out var(--deep-anim-fast, 200ms) var(--deep-ease-in, ease-in);
}

.deep-animate-collapse {
    animation: deep-collapse var(--deep-anim-normal, 300ms) var(--deep-ease-in, ease-in);
}

.deep-animate-scale-out {
    animation: deep-scale-out var(--deep-anim-normal, 300ms) var(--deep-ease-in, ease-in);
}

.deep-animate-slide-out-up {
    animation: deep-slide-out-up var(--deep-anim-normal, 300ms) var(--deep-ease-in, ease-in);
}

.deep-animate-slide-out-down {
    animation: deep-slide-out-down var(--deep-anim-normal, 300ms) var(--deep-ease-in, ease-in);
}

/* ================================================================
   UTILITY ANIMATION UTILITIES
   ================================================================ */

.deep-animate-spin {
    animation: deep-spin var(--deep-spin-duration, 1s) linear infinite;
}

.deep-animate-bounce {
    animation: deep-bounce 600ms ease-in-out;
}

.deep-animate-float {
    animation: float 3s ease-in-out infinite;
}

.deep-animate-pulse-card {
    animation: pulse-card var(--deep-pulse-duration, 3s) ease-in-out infinite;
}

/* ================================================================
   ANIMATION STATE UTILITIES
   ================================================================ */

/* Pause all animations */

.deep-animations-paused,
.deep-animations-paused * {
    animation-play-state: paused !important;
}

/* Disable all animations (for performance) */

.deep-animations-disabled,
.deep-animations-disabled * {
    animation: none !important;
    transition: none !important;
}

/* ================================================================
   TIMING MODIFIER UTILITIES
   ================================================================ */

/* Duration modifiers */

.deep-anim-instant {
    animation-duration: var(--deep-anim-instant, 50ms) !important;
}

.deep-anim-micro {
    animation-duration: var(--deep-anim-micro, 100ms) !important;
}

.deep-anim-fast {
    animation-duration: var(--deep-anim-fast, 200ms) !important;
}

.deep-anim-normal {
    animation-duration: var(--deep-anim-normal, 300ms) !important;
}

.deep-anim-slow {
    animation-duration: var(--deep-anim-slow, 600ms) !important;
}

.deep-anim-dramatic {
    animation-duration: var(--deep-anim-dramatic, 1000ms) !important;
}

/* Delay modifiers */

.deep-delay-stagger-1 {
    animation-delay: var(--deep-delay-stagger-1, 50ms);
}

.deep-delay-stagger-2 {
    animation-delay: var(--deep-delay-stagger-2, 100ms);
}

.deep-delay-stagger-3 {
    animation-delay: var(--deep-delay-stagger-3, 150ms);
}

.deep-delay-stagger-4 {
    animation-delay: var(--deep-delay-stagger-4, 200ms);
}

.deep-delay-stagger-5 {
    animation-delay: var(--deep-delay-stagger-5, 250ms);
}

/* ================================================================
   TAXONOMY-SPECIFIC UTILITIES
   ================================================================ */

/* Apply behavior/static - no animation */

.behavior-static {
    animation: none;
}

/* Apply behavior/pulse */

.behavior-pulse {
    animation: deep-pulse var(--deep-pulse-duration, 3s) ease-in-out infinite;
}

/* Apply behavior/blink */

.behavior-blink {
    animation: deep-blink 1s step-end infinite;
}

/* Apply behavior/highlight */

.behavior-highlight {
    animation: deep-pulse-glow var(--deep-pulse-duration, 3s) ease-in-out infinite;
}

/* ================================================================
   PERFORMANCE HELPERS
   ================================================================ */

/* Add to elements that will be animated */

.deep-will-animate {
    will-change: transform, opacity;
}

/* Remove after animation completes */

.deep-animation-complete {
    will-change: auto;
}

/* Force GPU acceleration */

.deep-gpu-accelerate {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ================================================================
   COMBO UTILITIES (common combinations)
   ================================================================ */

/* Fade in with stagger delay */

.deep-fade-in-stagger-1 {
    animation: deep-fade-in var(--deep-anim-fast, 200ms) var(--deep-ease-out, ease-out);
    animation-delay: var(--deep-delay-stagger-1, 50ms);
}

.deep-fade-in-stagger-2 {
    animation: deep-fade-in var(--deep-anim-fast, 200ms) var(--deep-ease-out, ease-out);
    animation-delay: var(--deep-delay-stagger-2, 100ms);
}

.deep-fade-in-stagger-3 {
    animation: deep-fade-in var(--deep-anim-fast, 200ms) var(--deep-ease-out, ease-out);
    animation-delay: var(--deep-delay-stagger-3, 150ms);
}

/* Materialize with stagger delay */

.deep-materialize-stagger-1 {
    animation: deep-materialize var(--deep-anim-normal, 300ms) var(--deep-ease-out, ease-out);
    animation-delay: var(--deep-delay-stagger-1, 50ms);
}

.deep-materialize-stagger-2 {
    animation: deep-materialize var(--deep-anim-normal, 300ms) var(--deep-ease-out, ease-out);
    animation-delay: var(--deep-delay-stagger-2, 100ms);
}

.deep-materialize-stagger-3 {
    animation: deep-materialize var(--deep-anim-normal, 300ms) var(--deep-ease-out, ease-out);
    animation-delay: var(--deep-delay-stagger-3, 150ms);
}
/* Layout Group System Styles */

:root {
    /* Group Colors */
    --layout-group-bg: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    --layout-group-border: rgba(255,255,255,0.1);
    --layout-group-shadow: 0 8px 32px rgba(0,0,0,0.3);

    /* Cell Colors */
    --layout-cell-bg: rgba(255,255,255,0.02);
    --layout-cell-border: rgba(255,255,255,0.05);
    --layout-cell-hover-bg: rgba(59, 130, 246, 0.1);
    --layout-cell-active-bg: rgba(59, 130, 246, 0.2);

    /* Dimensions */
    --layout-cell-size: 100px;
    --layout-cell-gap: 10px;
    --layout-cell-radius: 8px;

    /* Colors */
    --layout-primary: rgb(59, 130, 246);
    --layout-primary-rgb: 59, 130, 246;
    --layout-green: rgb(34, 197, 94);
    --layout-red: rgb(239, 68, 68);
}

/* Layout Group Container */
.deep-layout-group {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--layout-group-bg);
    border-radius: 12px;
    border: 1px solid var(--layout-group-border);
    box-shadow: var(--layout-group-shadow);
    backdrop-filter: blur(10px);
    padding: 1rem;
    transition: all 0.3s ease;
}

.deep-layout-group.invisible {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.deep-layout-group:hover {
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.deep-layout-group.invisible:hover {
    border-color: transparent;
    box-shadow: none;
}

/* Layout Group Header */
.deep-layout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.deep-layout-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.deep-layout-header .item-count {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* Layout Content Area */
.deep-layout-content {
    flex: 1;
    padding: 0.5rem;
    min-height: 100px;
}

/* GRID LAYOUT */
.deep-layout-content[data-layout="grid"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--layout-cell-size), 1fr));
    gap: var(--layout-cell-gap);
    align-items: start;
    justify-items: center;
}

/* ROW LAYOUT */
.deep-layout-content[data-layout="row"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--layout-cell-gap);
    align-items: flex-start;
}

/* COLUMN LAYOUT */
.deep-layout-content[data-layout="column"] {
    display: flex;
    flex-direction: column;
    gap: var(--layout-cell-gap);
    align-items: flex-start;
}

/* MANUAL LAYOUT */
.deep-layout-content[data-layout="manual"] {
    position: relative;
    display: block;
    min-height: 400px;
}

/* RADIAL LAYOUT */
.deep-layout-content[data-layout="radial"] {
    position: relative;
    display: block;
    min-height: 400px;
}

/* Layout Cell */
.deep-layout-cell {
    position: relative;
    width: var(--layout-cell-size);
    height: var(--layout-cell-size);
    background: var(--layout-cell-bg);
    border: 1px solid var(--layout-cell-border);
    border-radius: var(--layout-cell-radius);
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);

    /* TEMP: Make cells very visible for debugging */
    background: rgba(255, 0, 0, 0.3) !important;
    border: 2px solid rgba(255, 0, 0, 0.8) !important;
}

/* Cell States */
.deep-layout-cell.empty {
    border-style: dashed;
    opacity: 0.4;
}

.deep-layout-cell.occupied {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.deep-layout-cell.hover {
    border-color: var(--layout-primary);
    background: var(--layout-cell-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.deep-layout-cell.active {
    border-color: var(--layout-primary);
    background: var(--layout-cell-active-bg);
    box-shadow: 0 0 20px rgba(var(--layout-primary-rgb), 0.4);
}

/* Cell Activity States (from behaviors) */
.deep-layout-cell.pulse {
    animation: layout-cell-pulse 2s infinite;
}

.deep-layout-cell.receiving-data {
    animation: layout-cell-data-flow 1s infinite;
    border-color: var(--layout-green);
}

.deep-layout-cell.error {
    animation: layout-cell-error 0.5s;
    border-color: var(--layout-red);
}

/* Manual/Absolute Positioned Cells */
.deep-layout-content[data-layout="manual"] .deep-layout-cell,
.deep-layout-content[data-layout="radial"] .deep-layout-cell {
    position: absolute;
}

/* Animations */
@keyframes layout-cell-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes layout-cell-data-flow {
    0%, 100% {
        border-width: 1px;
        border-color: var(--layout-green);
    }
    50% {
        border-width: 3px;
        border-color: var(--layout-primary);
    }
}

@keyframes layout-cell-error {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Cell Label */
.cell-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 0.25rem;
    pointer-events: none;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    /* TEMP: Make labels very visible */
    color: white !important;
    font-weight: bold !important;
    font-size: 1rem !important;
}

/* Nested Groups */
.deep-layout-cell .deep-layout-group {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0.5rem;
}

/* Responsive breakpoints for grid columns */
@media (max-width: 400px) {
    .deep-layout-content[data-layout="grid"] {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 401px) and (max-width: 600px) {
    .deep-layout-content[data-layout="grid"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .deep-layout-content[data-layout="grid"] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 901px) {
    .deep-layout-content[data-layout="grid"] {
        grid-template-columns: repeat(auto-fit, minmax(var(--layout-cell-size), 1fr));
    }
}

.tab-bar[data-v-f1869a3b] {
  height: 36px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-shrink: 0;
}
.tab-button[data-v-f1869a3b] {
  height: 36px;
  white-space: nowrap;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
  font-family: inherit;
}
.tab-button[data-v-f1869a3b]:not(.bg-primary):hover {
  background-color: color-mix(in srgb, var(--primary-color) 40%, transparent);
}
.tab-button.bg-primary[data-v-f1869a3b] {
  font-weight: 600;
}

/* Remove outline on focus */
.tab-button[data-v-f1869a3b]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem var(--primary-color-alpha-50);
}

/* Use same product-section styling as Product page */
.product-section[data-v-efa4728c] {
    margin-bottom: 2rem;
}
.section-header[data-v-efa4728c] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.usage-chip[data-v-efa4728c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--surface-50);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    transition: all 0.2s;
}
.usage-chip[data-v-efa4728c]:hover {
    background: var(--surface-100);
    border-color: var(--primary-color);
}



.content-type-picker[data-v-4c95a9c3] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 2rem;
    background: var(--surface-ground);
}
.picker-container[data-v-4c95a9c3] {
    max-width: 1200px;
    width: 100%;
    height: 100%;
}
.picker-header[data-v-4c95a9c3] {
    text-align: center;
    margin-bottom: 2rem;
}
.content-type-card[data-v-4c95a9c3] {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.content-type-card[data-v-4c95a9c3]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}
.content-type-card[data-v-4c95a9c3]:active {
    transform: translateY(-2px);
}
.picker-footer[data-v-4c95a9c3] {
    opacity: 0.7;
}

.create-group-dialog[data-v-2f26b67d] {
  padding: 1rem 0;
}
.form-field[data-v-2f26b67d] {
  margin-bottom: 1.5rem;
}
.form-field label[data-v-2f26b67d] {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}
.form-field input[data-v-2f26b67d] {
  width: 100%;
}
.parent-info[data-v-2f26b67d] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surface-50);
  border-radius: 4px;
  color: var(--text-color-secondary);
  font-size: 0.875rem;
}
.parent-info i[data-v-2f26b67d] {
  color: var(--primary-color);
}
.parent-info strong[data-v-2f26b67d] {
  color: var(--text-color);
}

/* Scene container in RIGHT sidebar mode - fills entire middle pane */
.scene-container-right[data-v-ee6c9eae] {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Scene container in BOTTOM dock mode - fixed pixel height */
.scene-container-bottom[data-v-ee6c9eae] {
    width: 100%;
    height: var(--269da805);  /* Vue 3 v-bind in CSS */
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Force 3D component to fill its container */
.scene-container-right[data-v-ee6c9eae] > *,
.scene-container-bottom[data-v-ee6c9eae] > * {
    width: 100% !important;
    height: 100% !important;
}

/* Property editor in bottom mode - grows to fit content */
.property-editor-container[data-v-ee6c9eae] {
    width: 100%;
}

/* Override property editor height in bottom mode */
[data-v-ee6c9eae] .property-editor-container[data-mode="bottom"] {
    height: auto !important;
    overflow-y: visible !important;
    flex-shrink: 0;
    min-height: 400px;
}

/* Component uses PrimeFlex utility classes */

/* Component uses PrimeFlex utility classes */

/* Component uses PrimeFlex utility classes */

.tab-content[data-v-b88a01ec] {
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
}
.tab-pane[data-v-b88a01ec] {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.workspace-menu-bar[data-v-e4b9ac65] {
  position: fixed;
  top: 0;
  left: 60px;
  height: 40px;
  z-index: 9000;
  display: flex;
  gap: 4px;
  padding: 0 12px;
  align-items: center;
  background: var(--surface-ground);
}
.menu-group[data-v-e4b9ac65] {
  position: relative;
}
.menu-btn[data-v-e4b9ac65] {
  background: transparent;
  border: none;
  color: var(--text-color);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.menu-btn[data-v-e4b9ac65]:hover {
  background: var(--surface-hover);
}

/* Dropdown Menu */
.dropdown-menu[data-v-e4b9ac65] {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: var(--surface-overlay);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 6px;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}
.menu-item[data-v-e4b9ac65] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  color: var(--text-color);
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.menu-item[data-v-e4b9ac65]:hover:not(.disabled) {
  background: var(--surface-hover);
}
.menu-item.disabled[data-v-e4b9ac65] {
  opacity: 0.4;
  cursor: not-allowed;
}
.menu-divider[data-v-e4b9ac65] {
  height: 1px;
  background: var(--surface-border);
  margin: 4px 8px;
}
.shortcut[data-v-e4b9ac65] {
  font-size: 12px;
  opacity: 0.6;
  margin-left: 24px;
}

.element-tree-container[data-v-d2b8d53d] {
    height: 100%;
    width: 100%;

    /* Element Plus CSS Variables - Map to theme */
    --el-color-primary: var(--primary-color);
    --el-bg-color: var(--surface-ground);
    --el-text-color-regular: var(--text-color);
    --el-text-color-secondary: var(--text-color-secondary);
    --el-fill-color-light: var(--surface-hover);
    --el-font-family: var(--font-family);
}
.custom-tree-node[data-v-d2b8d53d] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fix: Arrow icon sizing (Element Plus uses SVG without size) */
[data-v-d2b8d53d] .el-tree-node__expand-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}
[data-v-d2b8d53d] .el-tree-node__expand-icon svg {
    width: 18px;
    height: 18px;
}

/* Hide arrows on leaf nodes (Element Plus adds is-leaf class) */
[data-v-d2b8d53d] .el-tree-node__expand-icon.is-leaf {
    visibility: hidden;
}

/* Selection state */
[data-v-d2b8d53d] .el-tree-node.is-current > .el-tree-node__content {
    background-color: var(--primary-color);
    color: var(--primary-color-text);
}

/* Hover state */
[data-v-d2b8d53d] .el-tree-node__content:hover {
    background-color: var(--surface-hover);
}

/* Node padding and layout */
[data-v-d2b8d53d] .el-tree-node__content {
    padding: 4px 8px;
    height: auto;
    min-height: 32px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.property-editor-container[data-v-cf2c4385] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;

    /* === Element Plus CSS Variables - Map to PrimeFlex Theme === */

    /* Background colors */
    --el-bg-color: var(--surface-ground);
    --el-fill-color-blank: var(--surface-card);

    /* Table-specific */
    --el-table-bg-color: var(--surface-card);
    --el-table-tr-bg-color: var(--surface-card);
    --el-table-header-bg-color: var(--surface-50);
    --el-table-border-color: var(--surface-border);
    --el-table-row-hover-bg-color: var(--surface-hover);

    /* Text */
    --el-text-color-regular: var(--text-color);
    --el-text-color-secondary: var(--text-color-secondary);
    --el-table-text-color: var(--text-color);
    --el-table-header-text-color: var(--text-color-secondary);

    /* Primary color (selection) */
    --el-color-primary: var(--primary-color);
    --el-color-primary-light-9: var(--primary-50);

    /* Borders */
    --el-border-color: var(--surface-border);
    --el-border-color-light: var(--surface-border);
    --el-border-color-lighter: var(--surface-100);

    /* Typography */
    --el-font-family: var(--font-family);
    --el-font-size-base: 12px;
    --el-font-size-small: 11px;

    /* Spacing */
    --el-border-radius-base: var(--border-radius);
}

/* Empty state */
.property-editor-empty[data-v-cf2c4385] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0.6;
}

/* Mode switcher bar */
.property-editor-mode-bar[data-v-cf2c4385] {
    display: flex;
    gap: 4px;
    padding: 8px;
    border-bottom: 1px solid var(--surface-border);
    background: var(--surface-50);
    flex-shrink: 0;
}

/* Right sidebar mode - internal scrolling */
.property-editor-container[data-mode="right"][data-v-cf2c4385] {
    overflow-y: auto;
}

/* Bottom dock mode - no internal scrolling (parent scrolls) */
.property-editor-container[data-mode="bottom"][data-v-cf2c4385] {
    overflow-y: visible;
    height: auto;
}

/* Property editor content wrapper */
.property-editor-content[data-v-cf2c4385] {
    min-height: 100%;  /* Allow content to grow beyond viewport */
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Header area with selected item info */
.property-editor-header[data-v-cf2c4385] {
    padding: 12px 16px;
    border-bottom: 1px solid var(--surface-border);
    background: var(--surface-50);
    flex-shrink: 0;
}
.property-editor-header .font-medium[data-v-cf2c4385] {
    margin: 4px 0;
    font-size: 14px;
}

/* === Compact Table Styling === */
.property-editor-table[data-v-cf2c4385] {
    font-size: 12px;
}

/* Compact row height */
[data-v-cf2c4385] .el-table__row {
    height: 32px;
}
[data-v-cf2c4385] .el-table__cell {
    padding: 6px 8px;
    border-color: var(--surface-border);
}

/* Header styling */
[data-v-cf2c4385] .el-table__header th {
    background: var(--surface-50);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color-secondary);
    padding: 8px;
}

/* Ensure header text aligns with cell content */
[data-v-cf2c4385] .el-table__header th .cell {
    padding-left: 0;
    text-align: left;
}

/* Selection state */
[data-v-cf2c4385] .el-table__row.current-row {
    background-color: var(--highlight-bg);
}

/* Hover state */
[data-v-cf2c4385] .el-table__body tr:hover > td {
    background-color: var(--surface-hover) !important;
}

/* Remove default table empty slot (we have our own) */
[data-v-cf2c4385] .el-table__empty-block {
    display: none;
}

/* === PHASE 2: Group Row Styling === */

/* Group rows (view, behavior, layout) - bold, subtle background */
[data-v-cf2c4385] .el-table__row.is-group .el-table__cell {
    background: var(--surface-50);
    font-weight: 600;
    color: var(--text-color);
}

/* Add top margin to group rows for visual separation */
[data-v-cf2c4385] .el-table__row.is-group {
    border-top: 2px solid var(--surface-border);
}

/* Indentation for child rows */
[data-v-cf2c4385] .el-table__row--level-1 .el-table__cell:first-child {
    padding-left: 32px !important;
}

/* === PHASE 2 Task 2.4: Tree Expand/Collapse Icons === */

/* Expand icon styling */
[data-v-cf2c4385] .el-table__expand-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    color: var(--text-color-secondary);
}
[data-v-cf2c4385] .el-table__expand-icon svg {
    width: 16px;
    height: 16px;
}

/* Expanded state */
[data-v-cf2c4385] .el-table__expand-icon--expanded {
    transform: rotate(90deg);
}

/* Hide expand icon on leaf nodes (child rows) */
[data-v-cf2c4385] .el-table__expand-icon.el-icon--right {
    visibility: hidden;
}


/* === Value Column Input Styling === */

/* Value cell wrapper - inputs stretch with margin */
.value-cell-wrapper[data-v-cf2c4385] {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Text inputs - stretch to max width */
[data-v-cf2c4385] .el-input--small {
    font-size: 12px;
    flex: 1;
    max-width: calc(100% - 8px); /* Right margin */
}
[data-v-cf2c4385] .el-input__inner {
    background: var(--surface-ground);
    border-color: var(--surface-border);
    color: var(--text-color);
    padding: 4px 8px;
    height: 26px;
    width: 100%;
}
[data-v-cf2c4385] .el-input__inner:focus {
    border-color: var(--primary-color);
}

/* Number inputs - stretch to max width, no spinners */
[data-v-cf2c4385] .el-input-number--small {
    width: 100%;
    flex: 1;
    max-width: calc(100% - 8px); /* Right margin */
}
[data-v-cf2c4385] .el-input-number .el-input__inner {
    text-align: left;
}

/* Checkbox styling */
[data-v-cf2c4385] .el-checkbox {
    margin-right: 0;
}
[data-v-cf2c4385] .el-checkbox__input.is-checked .el-checkbox__inner {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
[data-v-cf2c4385] .el-checkbox__inner {
    border-color: var(--surface-border);
}

/* === PHASE 3: PrimeVue Color Picker Styling === */
[data-v-cf2c4385] .p-colorpicker {
    display: inline-flex;
}
[data-v-cf2c4385] .p-colorpicker-preview {
    width: 32px;
    height: 26px;
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius);
}
[data-v-cf2c4385] .p-colorpicker-preview:hover {
    border-color: var(--primary-color);
}

/* === PHASE 3: PrimeVue Calendar Styling === */
[data-v-cf2c4385] .p-calendar {
    width: 100%;
    flex: 1;
    max-width: calc(100% - 8px); /* Right margin */
}
[data-v-cf2c4385] .p-calendar .p-inputtext {
    background: var(--surface-ground);
    border-color: var(--surface-border);
    color: var(--text-color);
    width: 100%;
    font-size: 12px;
    padding: 4px 8px;
    height: 26px;
}
[data-v-cf2c4385] .p-calendar .p-inputtext:focus {
    border-color: var(--primary-color);
}
[data-v-cf2c4385] .el-select {
    width: 100%;
}
[data-v-cf2c4385] .el-select .el-input__inner {
    background: var(--surface-ground);
    border-color: var(--surface-border);
    color: var(--text-color);
}
[data-v-cf2c4385] .el-select .el-input__inner:focus {
    border-color: var(--primary-color);
}

/* === PHASE 6: Save Status Feedback === */
/* Status indicator in dedicated status column */
.save-status-indicator[data-v-cf2c4385] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
.save-status-indicator i[data-v-cf2c4385] {
    font-size: 14px;
}

/* === PHASE 5: Responsive Breakpoints === */

/* Extra narrow (< 300px) - Minimal layout */
@media (max-width: 299px) {
[data-v-cf2c4385] .el-table__cell {
        padding: 4px 6px;
        font-size: 11px;
}
.value-cell-wrapper[data-v-cf2c4385] {
        gap: 4px;
}
}

/* Narrow (300px - 400px) - Compact property column */
@media (min-width: 300px) and (max-width: 400px) {
    /* Property column stays at 150px but with tighter padding */
[data-v-cf2c4385] .el-table__cell {
        padding: 5px 7px;
}
}

/* Medium (400px - 600px) - Standard layout */
@media (min-width: 400px) and (max-width: 600px) {
[data-v-cf2c4385] .el-table__cell {
        padding: 6px 8px;
}
}

/* Wide (> 600px) - Spacious layout */
@media (min-width: 600px) {
[data-v-cf2c4385] .el-table__cell {
        padding: 8px 12px;
}

    /* Slightly larger font for better readability */
.property-editor-table[data-v-cf2c4385] {
        font-size: 13px;
}

    /* Header more spacious in wide mode */
.property-editor-header[data-v-cf2c4385] {
        padding: 16px 20px;
}
.property-editor-header .font-medium[data-v-cf2c4385] {
        font-size: 15px;
}
}

/* === PHASE 6: Validation States === */

/* Invalid state - red border on inputs */
[data-v-cf2c4385] .el-input.is-invalid .el-input__inner,[data-v-cf2c4385] .el-input-number.is-invalid .el-input__inner,[data-v-cf2c4385] .el-date-editor.is-invalid .el-input__inner {
    border-color: #ef4444 !important;
}
[data-v-cf2c4385] .el-input.is-invalid .el-input__inner:focus,[data-v-cf2c4385] .el-input-number.is-invalid .el-input__inner:focus,[data-v-cf2c4385] .el-date-editor.is-invalid .el-input__inner:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

/* Valid state - subtle green border */
[data-v-cf2c4385] .el-input.is-valid .el-input__inner,[data-v-cf2c4385] .el-input-number.is-valid .el-input__inner {
    border-color: #10b981;
}

/* === Theme Dropdown Preview Styling === */

/* Theme option container - flex layout with gap */
.theme-option[data-v-cf2c4385] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Theme preview thumbnail - small colored box showing gradient */
.theme-preview[data-v-cf2c4385] {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--surface-border);
    flex-shrink: 0;
}

/* ===== SPACIOUS CARD GRID LAYOUT ===== */

/* Card styling */
[data-v-cf2c4385] .p-card {
    transition: box-shadow 0.2s;
}
[data-v-cf2c4385] .p-card:hover {
    box-shadow: var(--card-shadow);
}
[data-v-cf2c4385] .p-card .p-card-header {
    padding: 0;
    border-bottom: 1px solid var(--surface-border);
}
[data-v-cf2c4385] .p-card .p-card-content {
    padding: 1.25rem;
}

/* Field styling in cards */
.field[data-v-cf2c4385] {
    margin-bottom: 0;
}
.field label[data-v-cf2c4385] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Save status inline (next to input) */
.save-status-inline[data-v-cf2c4385] {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* Input sizing in card view */
[data-v-cf2c4385] .el-input,[data-v-cf2c4385] .el-input-number,[data-v-cf2c4385] .p-dropdown,[data-v-cf2c4385] .p-slider,[data-v-cf2c4385] .p-calendar {
    width: 100%;
}

/* Make color picker larger in card view */
[data-v-cf2c4385] .p-colorpicker {
    width: 100%;
}
[data-v-cf2c4385] .p-colorpicker .p-colorpicker-preview {
    width: 3rem;
    height: 3rem;
}

.content-explorer-loading[data-v-ffb3ec95],
.content-explorer-empty[data-v-ffb3ec95] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}
.content-explorer[data-v-ffb3ec95] {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.explorer-header[data-v-ffb3ec95] {
    padding: 1rem;
    border-bottom: 1px solid var(--surface-border);
}

/* Target group banner */
.target-group-banner[data-v-ffb3ec95] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--blue-500);
    color: white;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}
.target-group-banner i[data-v-ffb3ec95] {
    font-size: 1.1rem;
}

/* Selection count banner */
.selection-count-banner[data-v-ffb3ec95] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--primary-color-text);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}
.selection-count-banner i[data-v-ffb3ec95] {
    font-size: 1.1rem;
}
.explorer-body[data-v-ffb3ec95] {
    display: flex;
    flex: 1;
    min-height: 0;
}
.explorer-left[data-v-ffb3ec95] {
    width: 40%;
    border-right: 1px solid var(--surface-border);
    display: flex;
    flex-direction: column;
}
.explorer-right[data-v-ffb3ec95] {
    width: 60%;
    display: flex;
    flex-direction: column;
}
.explorer-right-empty[data-v-ffb3ec95] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.explorer-right-content[data-v-ffb3ec95] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
}
.model-list[data-v-ffb3ec95] {
    padding: 0.5rem;
}
.model-list-item[data-v-ffb3ec95] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.model-list-item[data-v-ffb3ec95]:hover {
    background-color: var(--surface-hover);
}
.model-list-item.selected[data-v-ffb3ec95] {
    background-color: var(--primary-color);
    color: var(--primary-color-text);
}

/* Checkbox indicator */
.model-list-checkbox[data-v-ffb3ec95] {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}
.model-list-item i[data-v-ffb3ec95] {
    font-size: 1.25rem;
}
.model-list-item.selected i[data-v-ffb3ec95] {
    color: var(--primary-color-text) !important;
}
.model-list-item-content[data-v-ffb3ec95] {
    flex: 1;
    min-width: 0;
}
.model-list-item-name[data-v-ffb3ec95] {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.model-list-item-type[data-v-ffb3ec95] {
    font-size: 0.75rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.model-list-footer[data-v-ffb3ec95] {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--surface-border);
    text-align: center;
}
.model-detail-header[data-v-ffb3ec95] {
    margin-bottom: 1.5rem;
}
.model-detail-body[data-v-ffb3ec95] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}
.model-detail-footer[data-v-ffb3ec95] {
    padding-top: 1rem;
    border-top: 1px solid var(--surface-border);
}
.model-detail-info[data-v-ffb3ec95] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.info-item[data-v-ffb3ec95] {
    display: flex;
    gap: 0.5rem;
}
.info-label[data-v-ffb3ec95] {
    font-weight: 500;
    min-width: 80px;
}
.info-value[data-v-ffb3ec95] {
    color: var(--text-color-secondary);
}
.model-detail-properties[data-v-ffb3ec95] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--surface-50);
    border-radius: 6px;
}
.property-item[data-v-ffb3ec95] {
    display: flex;
    gap: 0.5rem;
}
.property-key[data-v-ffb3ec95] {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--primary-color);
}
.property-value[data-v-ffb3ec95] {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--text-color-secondary);
}

/* Selected items list (multi-select right panel) */
.selected-items-list[data-v-ffb3ec95] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-right: 0.5rem;
}
.selected-item[data-v-ffb3ec95] {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--surface-50);
    border-radius: 4px;
    border: 1px solid var(--surface-border);
}
.selected-item i[data-v-ffb3ec95] {
    font-size: 1.5rem;
}

.scene-command-bar[data-v-175aa5ef] {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  min-width: 600px;
  max-width: 800px;
  width: auto;
}
.command-bar-content[data-v-175aa5ef] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
.scene-command-bar.expanded .command-bar-content[data-v-175aa5ef] {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
              0 0 0 1px var(--primary-color) inset;
}
.bar-section[data-v-175aa5ef] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.left-section[data-v-175aa5ef] {
  flex: 0 0 auto;
}
.center-section[data-v-175aa5ef] {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-ground);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  transition: background 0.2s;
}
.center-section[data-v-175aa5ef]:focus-within {
  background: var(--surface-hover);
}
.right-section[data-v-175aa5ef] {
  flex: 0 0 auto;
}
.command-input[data-v-175aa5ef] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-color);
  font-size: 0.95rem;
  min-width: 200px;
}
.command-input[data-v-175aa5ef]::placeholder {
  color: var(--text-color-secondary);
  opacity: 0.6;
}
.scene-mode-dropdown[data-v-175aa5ef] {
  min-width: 110px;
}
[data-v-175aa5ef] .scene-mode-dropdown .p-dropdown {
  background: var(--surface-ground);
  border: 1px solid var(--surface-border);
}
[data-v-175aa5ef] .scene-mode-dropdown .p-dropdown:hover {
  background: var(--surface-hover);
}

/* Command Dropdown */
.command-dropdown[data-v-175aa5ef] {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 400px;
  overflow-y: auto;
  background: var(--surface-overlay);
  backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
}
.command-item[data-v-175aa5ef] {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease;
  gap: 0.5rem;
}
.command-item[data-v-175aa5ef]:hover:not(.disabled),
.command-item.selected[data-v-175aa5ef]:not(.disabled) {
  background: var(--surface-hover);
}
.command-item.disabled[data-v-175aa5ef] {
  opacity: 0.4;
  cursor: not-allowed;
}
.command-label[data-v-175aa5ef] {
  flex: 1;
}
.shortcut[data-v-175aa5ef] {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--surface-100);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
  color: var(--text-color-secondary);
}

/* Buttons */
.control-btn[data-v-175aa5ef],
.toggle-btn[data-v-175aa5ef] {
  transition: all 0.15s ease;
}
.control-btn[data-v-175aa5ef]:hover,
.toggle-btn[data-v-175aa5ef]:hover {
  background: var(--surface-hover) !important;
}
.add-btn.active[data-v-175aa5ef] {
  background: var(--primary-color) !important;
  color: var(--primary-color-text) !important;
}

/* Scrollbar for dropdown */
.command-dropdown[data-v-175aa5ef]::-webkit-scrollbar {
  width: 8px;
}
.command-dropdown[data-v-175aa5ef]::-webkit-scrollbar-track {
  background: var(--surface-ground);
  border-radius: 4px;
}
.command-dropdown[data-v-175aa5ef]::-webkit-scrollbar-thumb {
  background: var(--surface-border);
  border-radius: 4px;
}
.command-dropdown[data-v-175aa5ef]::-webkit-scrollbar-thumb:hover {
  background: var(--surface-hover);
}

/* Animations */
.slide-up-enter-active[data-v-175aa5ef],
.slide-up-leave-active[data-v-175aa5ef] {
  transition: all 0.2s ease;
}
.slide-up-enter-from[data-v-175aa5ef] {
  transform: translateY(10px);
  opacity: 0;
}
.slide-up-leave-to[data-v-175aa5ef] {
  transform: translateY(10px);
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.scene-command-bar[data-v-175aa5ef] {
    min-width: 90%;
    max-width: 90%;
}
.scene-mode-dropdown[data-v-175aa5ef] {
    min-width: 90px;
}
.command-input[data-v-175aa5ef] {
    min-width: 150px;
}
}

.project-menubar[data-v-ab16f101] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-ground);
  border-bottom: 1px solid var(--surface-border);
  padding: 0 1rem;
  height: 48px;
}
.menubar[data-v-ab16f101] {
  flex: 1;
  border: none;
  background: transparent;
}
.toolbar-actions[data-v-ab16f101] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Override PrimeVue menubar styles for cleaner look */
[data-v-ab16f101] .p-menubar {
  background: transparent;
  border: none;
  padding: 0;
}
[data-v-ab16f101] .p-menubar-root-list {
  gap: 0.25rem;
}
[data-v-ab16f101] .p-menubar-item-content {
  border-radius: 6px;
}
[data-v-ab16f101] .p-menubar-item-link {
  padding: 0.5rem 0.75rem;
}
[data-v-ab16f101] .p-submenu-list {
  min-width: 220px;
}
[data-v-ab16f101] .p-menuitem-link {
  padding: 0.75rem 1rem;
}
[data-v-ab16f101] .p-menuitem-link .p-menuitem-text {
  flex: 1;
}

.empty-state[data-v-8622988c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--surface-50);
    border: 1px dashed var(--surface-border);
    border-radius: 8px;
}

/* Card hover effect */
.grid > div > div[data-v-8622988c]:hover {
    color: black;
    background: linear-gradient(200deg, #00ffaa, #00aaff);
}
.grid > div > div[data-v-8622988c]:hover * {
    color: black !important;
}

/* List item hover effect - target direct children of list container */
.list-view-container > div[data-v-8622988c]:hover {
    color: black;
    background: linear-gradient(200deg, #00ffaa, #00aaff);
}
.list-view-container > div[data-v-8622988c]:hover * {
    color: black !important;
}

.account-section[data-v-3f26bd90] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--surface-border);
}
.account-section[data-v-3f26bd90]:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.section-header[data-v-3f26bd90] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.plan-card[data-v-3f26bd90] {
    background: var(--surface-50);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem;
}
.usage-card[data-v-3f26bd90] {
    background: var(--surface-50);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem;
}
.profile-fields[data-v-3f26bd90] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.profile-row[data-v-3f26bd90] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}
.profile-label[data-v-3f26bd90] {
    font-weight: 500;
    color: var(--text-color);
    min-width: 120px;
}
.profile-value[data-v-3f26bd90] {
    color: var(--text-color-secondary);
}
.profile-input[data-v-3f26bd90] {
    width: 280px;
}
.text-primary[data-v-3f26bd90] {
    color: var(--primary-color);
}
.avatar-picker[data-v-3f26bd90] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.avatar-option[data-v-3f26bd90] {
    position: relative;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.avatar-option[data-v-3f26bd90]:hover {
    border-color: var(--surface-400);
}
.avatar-option--selected[data-v-3f26bd90] {
    border-color: var(--primary-color);
}
.avatar-check[data-v-3f26bd90] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--primary-color);
    color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
}
@media (max-width: 768px) {
.profile-row[data-v-3f26bd90] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
}
.profile-input[data-v-3f26bd90] {
        width: 100%;
}
.plan-card .flex[data-v-3f26bd90] {
        flex-direction: column;
}
.plan-card .ml-auto[data-v-3f26bd90] {
        margin-left: 0;
        margin-top: 1rem;
}
.text-5xl[data-v-3f26bd90] {
        font-size: 2rem !important;
}
.text-xl[data-v-3f26bd90] {
        font-size: 1rem !important;
}
}

.upload-dropzone[data-v-881f6a1a] {
    border: 2px dashed var(--surface-border);
    border-radius: 12px;
    background: var(--surface-50);
    transition: all 0.3s ease;
    cursor: pointer;
}
.upload-dropzone[data-v-881f6a1a]:hover {
    border-color: var(--primary-color);
    background: var(--surface-100);
}
.upload-dropzone.drag-over[data-v-881f6a1a] {
    border-color: var(--primary-color);
    background: var(--primary-50);
}
.upload-icon[data-v-881f6a1a] {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.upload-dropzone:hover .upload-icon[data-v-881f6a1a] {
    transform: scale(1.1);
}
.upload-progress[data-v-881f6a1a] {
    background: var(--surface-100);
    border-radius: 8px;
    border-top: 2px solid var(--surface-border);
}
.storage-card[data-v-881f6a1a] {
    background: var(--surface-50);
    border-radius: 12px;
    border: 1px solid var(--surface-border);
    padding: 1.5rem;
}
[data-v-881f6a1a] .library-datatable .p-highlight {
    background-color: var(--primary-color) !important;
}
[data-v-881f6a1a] .library-datatable .p-highlight > td {
    background-color: var(--primary-color) !important;
    color: white !important;
}
[data-v-881f6a1a] .library-datatable .p-datatable-tbody > tr:not(.p-highlight):hover {
    background-color: var(--surface-hover) !important;
    cursor: pointer;
}
@media (max-width: 768px) {
[data-v-881f6a1a] .library-datatable .hidden {
        display: none !important;
}
.upload-dropzone .text-2xl[data-v-881f6a1a] {
        font-size: 1.25rem !important;
}
.upload-dropzone .text-lg[data-v-881f6a1a] {
        font-size: 0.875rem !important;
}
.upload-dropzone .text-5xl[data-v-881f6a1a] {
        font-size: 2.5rem !important;
}
.storage-card .text-xl[data-v-881f6a1a] {
        font-size: 1rem !important;
}
.storage-card .flex-wrap[data-v-881f6a1a] {
        gap: 0.5rem !important;
}
.text-5xl[data-v-881f6a1a] {
        font-size: 2rem !important;
}
.text-4xl[data-v-881f6a1a] {
        font-size: 1.5rem !important;
}
.surface-card[data-v-881f6a1a] {
        max-width: 100% !important;
}
[data-v-881f6a1a] .p-datatable {
        font-size: 0.875rem;
}
}

.product-section[data-v-6fd12971] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--surface-border);
}
.product-section[data-v-6fd12971]:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.usage-chip[data-v-6fd12971] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--surface-100);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-color-secondary);
    cursor: pointer;
    transition: all 0.2s;
}
.usage-chip[data-v-6fd12971]:hover {
    background: var(--surface-200);
    color: var(--text-color);
}
.usage-chip i[data-v-6fd12971] {
    color: var(--primary-color);
}
.tab-button[data-v-6fd12971] {
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 6px;
    background: var(--surface-ground);
    color: var(--text-color-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}
.tab-button[data-v-6fd12971]:hover {
    background: var(--surface-100);
}
.tab-button--active[data-v-6fd12971] {
    background: var(--surface-0);
    color: var(--primary-color);
    font-weight: 500;
}
.info-card[data-v-6fd12971] {
    background: var(--surface-50);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    padding: 1rem;
}
@media (max-width: 768px) {
.usage-chip[data-v-6fd12971] {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
}
.text-5xl[data-v-6fd12971] {
        font-size: 2rem !important;
}
.text-xl[data-v-6fd12971] {
        font-size: 1rem !important;
}
.tab-button[data-v-6fd12971] {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
}
}

.detail-section[data-v-9829b28e] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--surface-border);
}
.detail-section[data-v-9829b28e]:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.section-header[data-v-9829b28e] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.detail-icon[data-v-9829b28e] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-chip[data-v-9829b28e] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--surface-100);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-color-secondary);
}
.stat-chip i[data-v-9829b28e] {
    color: var(--primary-color);
}
.placeholder-content[data-v-9829b28e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--surface-50);
    border: 1px dashed var(--surface-border);
    border-radius: 8px;
    text-align: center;
}
.project-preview[data-v-9829b28e] {
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    overflow: hidden;
}
.project-preview img[data-v-9829b28e] {
    width: 100%;
    height: auto;
    display: block;
}
.project-preview-placeholder[data-v-9829b28e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--surface-50);
    border: 1px dashed var(--surface-border);
    border-radius: 8px;
    min-height: 200px;
}
.structure-info[data-v-9829b28e] {
    background: var(--surface-50);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    overflow: hidden;
}
.structure-row[data-v-9829b28e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--surface-border);
}
.structure-row[data-v-9829b28e]:last-child {
    border-bottom: none;
}
@media (max-width: 768px) {
.detail-icon[data-v-9829b28e] {
        width: 48px;
        height: 48px;
}
.detail-icon i[data-v-9829b28e] {
        font-size: 1.5rem !important;
}
.text-3xl[data-v-9829b28e] {
        font-size: 1.5rem !important;
}
}

.user-menu[data-v-1c1f2e1f] {
    display: flex;
    align-items: center;
    height: 100%;
}
.user-pill[data-v-1c1f2e1f] {
    background: var(--surface-100);
    border: 1px solid var(--surface-border);
    transition: all 0.15s;
}
.user-pill[data-v-1c1f2e1f]:hover {
    background: var(--surface-200);
}
.user-first-name[data-v-1c1f2e1f] {
    white-space: nowrap;
}

/* Menu styles are in app.css (global) since Menu is teleported to body */

.deep-avatar[data-v-2d032cfb] {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deep-avatar--small[data-v-2d032cfb] {
    width: 28px;
    height: 22px;
}
.deep-avatar--normal[data-v-2d032cfb] {
    width: 36px;
    height: 28px;
}
.deep-avatar--large[data-v-2d032cfb] {
    width: 48px;
    height: 38px;
}
.deep-avatar__initials[data-v-2d032cfb] {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
.deep-avatar--small .deep-avatar__initials[data-v-2d032cfb] {
    font-size: 0.65rem;
}
.deep-avatar--normal .deep-avatar__initials[data-v-2d032cfb] {
    font-size: 0.8rem;
}
.deep-avatar--large .deep-avatar__initials[data-v-2d032cfb] {
    font-size: 1rem;
}

.billing-banner[data-v-67b3b75b] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 48px;
}

/* Adjust app content when banner is visible */
.billing-banner[data-v-67b3b75b] + * {
    margin-top: 48px;
}

.usage-dashboard[data-v-af12397d] {
    padding: 1rem;
    background: var(--surface-card);
    border-radius: 8px;
}
.usage-dashboard.compact[data-v-af12397d] {
    padding: 0.5rem;
    background: transparent;
}
.usage-meter[data-v-af12397d] .p-progressbar {
    border-radius: 4px;
    background: var(--surface-200);
}
.usage-meter[data-v-af12397d] .p-progressbar-value {
    border-radius: 4px;
    transition: width 0.3s ease, background 0.3s ease;
}

.limit-panel-overlay[data-v-2c17d4fd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.limit-panel[data-v-2c17d4fd] {
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
@media (min-width: 768px) {
.limit-panel-overlay[data-v-2c17d4fd] {
        align-items: center;
}
.limit-panel[data-v-2c17d4fd] {
        border-radius: 16px;
        margin: 2rem;
}
}
.option-card[data-v-2c17d4fd] {
    border: 1px solid var(--surface-border);
    transition: all 0.2s ease;
}
.option-card[data-v-2c17d4fd]:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}
.option-card.bg-primary-reverse[data-v-2c17d4fd] {
    background: var(--primary-100);
    border-color: var(--primary-color);
}

/* Slide transition */
.slide-enter-active[data-v-2c17d4fd],
.slide-leave-active[data-v-2c17d4fd] {
    transition: all 0.3s ease;
}
.slide-enter-from[data-v-2c17d4fd],
.slide-leave-to[data-v-2c17d4fd] {
    opacity: 0;
}
.slide-enter-from .limit-panel[data-v-2c17d4fd],
.slide-leave-to .limit-panel[data-v-2c17d4fd] {
    transform: translateY(100%);
}
@media (min-width: 768px) {
.slide-enter-from .limit-panel[data-v-2c17d4fd],
    .slide-leave-to .limit-panel[data-v-2c17d4fd] {
        transform: translateY(20px) scale(0.95);
}
}

.purchase-overlay[data-v-8196bd75] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.purchase-panel[data-v-8196bd75] {
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}
.purchase-body[data-v-8196bd75] {
    overflow-y: auto;
    flex: 1;
}
.plans-grid[data-v-8196bd75] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.plan-card[data-v-8196bd75] {
    position: relative;
    border: 2px solid var(--surface-border);
    transition: all 0.2s ease;
}
.plan-card[data-v-8196bd75]:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
.plan-card.plan-current[data-v-8196bd75] {
    border-color: var(--primary-color);
    background: var(--primary-50);
}
.plan-card.plan-popular[data-v-8196bd75] {
    border-color: var(--green-500);
}
.plan-card.plan-selected[data-v-8196bd75] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-100);
}
.popular-badge[data-v-8196bd75] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-500);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}
.current-badge[data-v-8196bd75] {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}
.plan-features li[data-v-8196bd75] {
    color: var(--text-color-secondary);
}

/* Transitions */
.fade-enter-active[data-v-8196bd75],
.fade-leave-active[data-v-8196bd75] {
    transition: opacity 0.2s ease;
}
.fade-enter-from[data-v-8196bd75],
.fade-leave-to[data-v-8196bd75] {
    opacity: 0;
}
.fade-enter-active .purchase-panel[data-v-8196bd75],
.fade-leave-active .purchase-panel[data-v-8196bd75] {
    transition: transform 0.2s ease;
}
.fade-enter-from .purchase-panel[data-v-8196bd75],
.fade-leave-to .purchase-panel[data-v-8196bd75] {
    transform: scale(0.95);
}

/* Mobile */
@media (max-width: 768px) {
.purchase-overlay[data-v-8196bd75] {
        padding: 0;
        align-items: flex-end;
}
.purchase-panel[data-v-8196bd75] {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
}
.plans-grid[data-v-8196bd75] {
        grid-template-columns: 1fr;
}
}

/*
 * Polar checkout iframe styling
 * Override SDK's full-screen iframe to display as centered modal
 */
iframe[allow*="payment"] {
    max-width: 500px !important;
    max-height: 90vh !important;
    width: 100% !important;
    height: 100% !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 12px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Mobile: wider checkout on small screens */
@media (max-width: 768px) {
iframe[allow*="payment"] {
        max-width: 95% !important;
        max-height: 95vh !important;
        border-radius: 8px !important;
}
}
.splitpanes{display:flex;width:100%;height:100%}.splitpanes--vertical{flex-direction:row}.splitpanes--horizontal{flex-direction:column}.splitpanes--dragging *{user-select:none}.splitpanes__pane{width:100%;height:100%;overflow:hidden}.splitpanes--vertical .splitpanes__pane{transition:width .2s ease-out}.splitpanes--horizontal .splitpanes__pane{transition:height .2s ease-out}.splitpanes--dragging .splitpanes__pane{transition:none}.splitpanes__splitter{touch-action:none}.splitpanes--vertical>.splitpanes__splitter{min-width:1px;cursor:col-resize}.splitpanes--horizontal>.splitpanes__splitter{min-height:1px;cursor:row-resize}.splitpanes.default-theme .splitpanes__pane{background-color:#f2f2f2}.splitpanes.default-theme .splitpanes__splitter{background-color:#fff;box-sizing:border-box;position:relative;flex-shrink:0}.splitpanes.default-theme .splitpanes__splitter:before,.splitpanes.default-theme .splitpanes__splitter:after{content:"";position:absolute;top:50%;left:50%;background-color:#00000026;transition:background-color .3s}.splitpanes.default-theme .splitpanes__splitter:hover:before,.splitpanes.default-theme .splitpanes__splitter:hover:after{background-color:#00000040}.splitpanes.default-theme .splitpanes__splitter:first-child{cursor:auto}.default-theme.splitpanes .splitpanes .splitpanes__splitter{z-index:1}.default-theme.splitpanes--vertical>.splitpanes__splitter,.default-theme .splitpanes--vertical>.splitpanes__splitter{width:7px;border-left:1px solid #eee;margin-left:-1px}.default-theme.splitpanes--vertical>.splitpanes__splitter:before,.default-theme.splitpanes--vertical>.splitpanes__splitter:after,.default-theme .splitpanes--vertical>.splitpanes__splitter:before,.default-theme .splitpanes--vertical>.splitpanes__splitter:after{transform:translateY(-50%);width:1px;height:30px}.default-theme.splitpanes--vertical>.splitpanes__splitter:before,.default-theme .splitpanes--vertical>.splitpanes__splitter:before{margin-left:-2px}.default-theme.splitpanes--vertical>.splitpanes__splitter:after,.default-theme .splitpanes--vertical>.splitpanes__splitter:after{margin-left:1px}.default-theme.splitpanes--horizontal>.splitpanes__splitter,.default-theme .splitpanes--horizontal>.splitpanes__splitter{height:7px;border-top:1px solid #eee;margin-top:-1px}.default-theme.splitpanes--horizontal>.splitpanes__splitter:before,.default-theme.splitpanes--horizontal>.splitpanes__splitter:after,.default-theme .splitpanes--horizontal>.splitpanes__splitter:before,.default-theme .splitpanes--horizontal>.splitpanes__splitter:after{transform:translate(-50%);width:30px;height:1px}.default-theme.splitpanes--horizontal>.splitpanes__splitter:before,.default-theme .splitpanes--horizontal>.splitpanes__splitter:before{margin-top:-2px}.default-theme.splitpanes--horizontal>.splitpanes__splitter:after,.default-theme .splitpanes--horizontal>.splitpanes__splitter:after{margin-top:1px}

.scene-card[data-v-c4d9d781] {
    min-width: 220px;
    max-width: 280px;
    pointer-events: auto;
    user-select: none;
}
.scene-card-header[data-v-c4d9d781] {
    background: var(--surface-50);
}
.scene-card-body[data-v-c4d9d781] {
    min-height: 60px;
}

.group-header[data-v-698d3897] {
    min-width: 200px;
    background: rgba(30, 30, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}
.header-icon[data-v-698d3897] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.selection-popup[data-v-25fb8c4c] {
    min-width: 220px;
    max-width: 300px;
    background: rgba(30, 30, 46, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: auto;
}
.popup-icon[data-v-25fb8c4c] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}
.p-button-text[data-v-25fb8c4c] {
    background: transparent;
    border: none;
    color: var(--primary-color, #3b82f6);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}
.p-button-text[data-v-25fb8c4c]:hover {
    background: rgba(59, 130, 246, 0.1);
}

.interactive-panel[data-v-bb786441] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #fff;
    pointer-events: auto;  /* Enable mouse interaction through CSS3DRenderer */
}
.live-dot[data-v-bb786441] {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-dot-bb786441 1.5s ease-in-out infinite;
}
@keyframes pulse-dot-bb786441 {
0%, 100% { opacity: 1; transform: scale(1);
}
50% { opacity: 0.5; transform: scale(0.8);
}
}
.p-button[data-v-bb786441] {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.p-button[data-v-bb786441]:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.counter-display[data-v-bb786441] {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.5);
}
.slider-input[data-v-bb786441] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    cursor: pointer;
}
.slider-input[data-v-bb786441]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #00ff88;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,255,136,0.5);
}
.status-indicator[data-v-bb786441] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,0,0,0.2);
    border: 1px solid rgba(255,0,0,0.3);
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}
.status-indicator.active[data-v-bb786441] {
    background: rgba(0,255,136,0.2);
    border-color: rgba(0,255,136,0.3);
}
.status-indicator i[data-v-bb786441] {
    color: #ff4444;
}
.status-indicator.active i[data-v-bb786441] {
    color: #00ff88;
}
.action-btn[data-v-bb786441] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(0,200,100,0.1));
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 4px;
    color: #00ff88;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.action-btn[data-v-bb786441]:hover {
    background: linear-gradient(135deg, rgba(0,255,136,0.3), rgba(0,200,100,0.2));
    transform: translateY(-1px);
}
.action-btn-danger[data-v-bb786441] {
    background: linear-gradient(135deg, rgba(255,68,68,0.2), rgba(200,50,50,0.1));
    border-color: rgba(255,68,68,0.3);
    color: #ff6666;
}
.action-btn-danger[data-v-bb786441]:hover {
    background: linear-gradient(135deg, rgba(255,68,68,0.3), rgba(200,50,50,0.2));
}
.data-feed[data-v-bb786441] {
    font-size: 11px;
    border: 1px solid rgba(0,255,136,0.2);
}
.text-green-400[data-v-bb786441] {
    color: #4ade80;
}
