/* VIXMA LIGHT THEME - V2 with higher specificity */

/* =============================================
   MAIN PANEL CONTAINERS - LIGHT BACKGROUND
   ============================================= */
body .gamma-editor-panel,
body .gamma-widget-panel,
body .gamma-panel-content,
body #widgetPanel,
body #editorPanel,
.gamma-editor-panel,
.gamma-widget-panel,
#widgetPanel,
#editorPanel,
[class*="panel"] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #1a1a2e !important;
    border-left: 1px solid #e5e7eb !important;
}

/* Panel header */
body .gamma-panel-header,
.gamma-panel-header,
.panel-header {
    background: #f8f9fc !important;
    background-color: #f8f9fc !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding: 16px 20px !important;
}

body .gamma-panel-header h3,
body .gamma-editor-title,
.gamma-panel-header h3,
.gamma-editor-title,
.panel-header h3 {
    color: #1a1a2e !important;
    font-weight: 700 !important;
}

/* Back button */
body .gamma-editor-back,
.gamma-editor-back,
.back-btn {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
}

body .gamma-editor-back:hover,
.gamma-editor-back:hover {
    background: #e5e7eb !important;
    color: #7c3aed !important;
}

/* =============================================
   FORM INPUTS - LIGHT
   ============================================= */
body .gamma-widget-panel input,
body .gamma-widget-panel textarea,
body .gamma-widget-panel select,
body .gamma-panel-content input,
body .gamma-panel-content textarea,
body .gamma-panel-content select,
body .widget-editor-content input,
body .widget-editor-content textarea,
body .widget-editor-content select,
#editorPanel input,
#editorPanel textarea,
#editorPanel select,
#widgetPanel input,
#widgetPanel textarea,
#widgetPanel select {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #1a1a2e !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
}

body .gamma-widget-panel input:focus,
body .gamma-widget-panel textarea:focus,
body .gamma-panel-content input:focus,
body .gamma-panel-content textarea:focus,
#editorPanel input:focus,
#editorPanel textarea:focus {
    border-color: #7c3aed !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
}

/* Labels */
body .gamma-widget-panel label,
body .gamma-panel-content label,
body .widget-editor-content label,
#editorPanel label,
#widgetPanel label {
    color: #4b5563 !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* =============================================
   BUTTONS
   ============================================= */
body .gamma-apply-btn,
body .apply-btn,
body .btn-primary,
#editorPanel .apply-btn,
#widgetPanel .apply-btn,
button[class*="apply"],
button[class*="primary"] {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

body .gamma-apply-btn:hover,
body .apply-btn:hover,
body .btn-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4) !important;
}

/* Secondary/Regenerate button */
body .gamma-regenerate-btn,
body .regenerate-btn,
body .btn-secondary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
}

/* =============================================
   ELEMENT ITEMS IN PANEL
   ============================================= */
body .gamma-element-item,
body .element-item,
body .widget-item,
#editorPanel .element-item,
#widgetPanel .element-item {
    background: #f8f9fc !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    margin-bottom: 8px !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    color: #1a1a2e !important;
}

body .gamma-element-item:hover,
body .element-item:hover,
body .widget-item:hover {
    border-color: #7c3aed !important;
    background: #faf5ff !important;
}

/* =============================================
   TEXT FORMATTING TOOLBAR
   ============================================= */
.text-format-toolbar {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 8px 12px !important;
    background: #f3f4f6 !important;
    border-radius: 12px 12px 0 0 !important;
    border: 1px solid #e5e7eb !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.format-btn {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #4b5563 !important;
    transition: all 0.15s ease !important;
}

.format-btn:hover {
    background: #7c3aed !important;
    color: #ffffff !important;
    border-color: #7c3aed !important;
}

.format-btn.color-btn {
    padding: 0 !important;
}

.format-btn.color-btn span {
    width: 18px !important;
    height: 18px !important;
    border-radius: 4px !important;
    display: block !important;
}

.toolbar-sep {
    width: 1px !important;
    height: 24px !important;
    background: #d1d5db !important;
    margin: 0 6px !important;
}

/* Rich text editor area */
.richtext-editor {
    min-height: 120px !important;
    padding: 16px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0 0 12px 12px !important;
    color: #1a1a2e !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    outline: none !important;
}

.richtext-editor:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
}

.editor-tip {
    font-size: 12px !important;
    color: #9ca3af !important;
    margin-top: 8px !important;
    padding: 8px 12px !important;
    background: #f9fafb !important;
    border-radius: 8px !important;
}

/* =============================================
   SCROLLBAR STYLING
   ============================================= */
#editorPanel::-webkit-scrollbar,
#widgetPanel::-webkit-scrollbar,
.gamma-panel-content::-webkit-scrollbar {
    width: 6px !important;
}

#editorPanel::-webkit-scrollbar-track,
#widgetPanel::-webkit-scrollbar-track {
    background: #f3f4f6 !important;
}

#editorPanel::-webkit-scrollbar-thumb,
#widgetPanel::-webkit-scrollbar-thumb {
    background: #d1d5db !important;
    border-radius: 3px !important;
}

#editorPanel::-webkit-scrollbar-thumb:hover,
#widgetPanel::-webkit-scrollbar-thumb:hover {
    background: #9ca3af !important;
}

/* =============================================
   TIPS AND HELPER TEXT
   ============================================= */
body .gamma-tip,
body .editor-tip,
body .help-text,
#editorPanel .tip,
#widgetPanel .tip {
    color: #6b7280 !important;
    background: #f9fafb !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    margin-top: 12px !important;
}

/* =============================================
   FIX HERO SECTION OVERLAY
   ============================================= */
.hero::before,
.hero-section::before,
[class*="hero"]::before {
    opacity: 0.15 !important;
}

/* =============================================
   DRAGGABLE ELEMENTS
   ============================================= */
.gamma-drag-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.draggable-element {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #f8f9fc;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    cursor: grab;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.2s ease;
}

.draggable-element:hover {
    border-color: #7c3aed;
    background: #faf5ff;
    color: #7c3aed;
}

.draggable-element:active,
.draggable-element.dragging {
    cursor: grabbing;
    opacity: 0.7;
    transform: scale(0.98);
    border-style: solid;
    border-color: #7c3aed;
    background: #ede9fe;
}

.draggable-element span {
    font-size: 16px;
}

.drag-tip {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 12px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

/* ============================================
   TOOLS SIDEBAR - Gamma-style
   ============================================ */
.gamma-tools-sidebar {
    position: absolute;
    right: 400px;
    top: 60px;
    bottom: 20px;
    width: 48px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    gap: 4px;
    z-index: 100;
    border: 1px solid #e5e7eb;
}

.tools-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.15s ease;
}

.tools-btn:hover {
    background: #f3f4f6;
    color: #3b82f6;
}

.tools-btn.active {
    background: #eff6ff;
    color: #3b82f6;
}

.tools-btn svg {
    width: 20px;
    height: 20px;
}

/* Adjust main layout for sidebar */
.gamma-editor-panel {
    right: 0 !important;
}

.gamma-preview-section {
    margin-right: 60px;
}

/* =============================================
   EDITOR PANEL FIX - Compact layout v2
   ============================================= */
.gamma-editor-panel,
#editorPanel {
    width: 340px !important;
    max-width: 340px !important;
    min-width: 280px !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    height: auto !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08) !important;
    display: flex !important;
    flex-direction: column !important;
}

.gamma-panel-content {
    padding: 16px !important;
    flex: 0 1 auto !important;
    overflow-y: auto !important;
}

/* Element edit section - COMPACT */
.gamma-element-edit {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.gamma-form-group {
    margin-bottom: 12px !important;
}

.gamma-form-group textarea {
    min-height: 80px !important;
    max-height: 120px !important;
    resize: vertical !important;
}

.gamma-tip {
    font-size: 12px !important;
    color: #9ca3af !important;
    margin: 8px 0 !important;
    padding: 0 !important;
}

/* Action buttons - FIXED at bottom */
.gamma-element-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 16px !important;
    padding: 16px !important;
    background: #f9fafb !important;
    border-top: 1px solid #e5e7eb !important;
    position: sticky !important;
    bottom: 0 !important;
}

/* Remove any flex-grow that causes stretching */
.gamma-panel-content > * {
    flex-shrink: 0 !important;
}

/* Quick actions grid - 3 columns */
.gamma-quick-actions {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin-top: 16px !important;
}

.gamma-quick-btn {
    padding: 10px 6px !important;
    font-size: 10px !important;
}

/* Industry badge compact */
.gamma-industry-badge {
    padding: 6px 10px !important;
    font-size: 11px !important;
    margin-bottom: 12px !important;
}

/* Back button compact */
.gamma-editor-back {
    padding: 6px 12px !important;
    font-size: 12px !important;
    margin-bottom: 12px !important;
}

/* Empty state compact */
.gamma-empty-state {
    padding: 20px !important;
}

.gamma-empty-state h4 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
}

.gamma-empty-state p {
    font-size: 12px !important;
    margin-bottom: 16px !important;
}

/* =============================================
   CRITICAL FIX - Editor Panel Height & Layout
   ============================================= */

/* Main panel - NO full height */
#editorPanel,
.gamma-editor-panel {
    height: auto !important;
    max-height: 100vh !important;
    min-height: auto !important;
    display: block !important;
}

/* Panel content - NO flex stretching */
.gamma-panel-content {
    display: block !important;
    height: auto !important;
    flex: none !important;
    flex-grow: 0 !important;
}

/* Element editor section */
.gamma-element-editor,
#elementEditor {
    display: block !important;
    height: auto !important;
}

/* Editor content area */
#editorContent {
    margin-bottom: 16px !important;
}

/* Actions buttons - immediately after content */
.gamma-editor-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 !important;
    margin-top: 16px !important;
    background: transparent !important;
    border: none !important;
    position: relative !important;
    bottom: auto !important;
}

/* Form textarea */
#elementEditor textarea,
.gamma-element-editor textarea {
    min-height: 80px !important;
    max-height: 150px !important;
    height: auto !important;
}

/* Regenerate button */
.gamma-btn-regenerate {
    width: 100% !important;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

/* Apply button */
.gamma-btn-apply {
    width: 100% !important;
    padding: 14px 20px !important;
    background: #7c3aed !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

/* Empty state - compact */
#editorEmptyState,
.gamma-empty-state {
    padding: 24px 16px !important;
}

/* Quick actions compact */
.gamma-quick-actions {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
}

.gamma-quick-btn {
    padding: 10px 6px !important;
    font-size: 10px !important;
    min-height: auto !important;
}


/* ===== TOOLS SIDEBAR POSITION FIX ===== */
.gamma-tools-sidebar {
    position: fixed !important;
    right: 340px !important; /* Next to editor panel */
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
}

/* When no editor panel is open, move closer to edge */
body:not(.panel-open) .gamma-tools-sidebar {
    right: 20px !important;
}

/* ===== HERO CLICKABILITY FIX ===== */
.hero-particles,
.hero-glow,
[class*="hero"] .hero-particles,
[class*="hero"] .hero-glow {
    pointer-events: none !important;
    z-index: 1 !important;
}

.hero *:not(.hero-particles):not(.hero-glow):not(.particle),
.hero-section *:not(.hero-particles):not(.hero-glow):not(.particle),
section.hero *:not(.hero-particles):not(.hero-glow):not(.particle) {
    pointer-events: auto !important;
    position: relative;
    z-index: 2;
}

/* ===== HERO TEXT CONTRAST FIX ===== */
.hero h1, .hero h2, .hero-section h1, .hero-section h2,
section.hero h1, section.hero h2,
[class*="hero"] h1, [class*="hero"] h2 {
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.7),
        0 8px 40px rgba(0,0,0,0.5) !important;
}

.hero p, .hero-section p, section.hero p, [class*="hero"] p {
    text-shadow: 
        0 1px 3px rgba(0,0,0,0.9),
        0 2px 10px rgba(0,0,0,0.6) !important;
}

/* Ensure hero buttons are clickable */
.hero a, .hero button, .hero-section a, .hero-section button,
section.hero a, section.hero button {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

/* FIX: Hide editor panel by default, show only when element selected */
.gamma-editor-panel {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gamma-fullscreen-editor.panel-open .gamma-editor-panel,
body.panel-open .gamma-editor-panel,
.gamma-editor-panel.visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Move sidebar closer to edge when panel is hidden */
body:not(.panel-open) .gamma-tools-sidebar,
.gamma-fullscreen-editor:not(.panel-open) .gamma-tools-sidebar {
    right: 20px !important;
}

/* FIX: Navigation text contrast - make menu visible */
.gamma-preview-frame nav a,
.gamma-preview-frame .nav-link,
.gamma-preview-frame header nav a {
    color: #1f2937 !important;
    text-shadow: none !important;
}

.gamma-preview-frame nav.dark a,
.gamma-preview-frame .dark nav a,
.gamma-preview-frame header.dark nav a {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
/* FIX: Premium Editor Panel Styling */
.gamma-editor-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    border-left: 1px solid #e2e8f0 !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08) !important;
}

.gamma-editor-panel .gamma-panel-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
    padding: 16px 20px !important;
    border-radius: 0 !important;
}

.gamma-editor-panel .gamma-panel-header h3 {
    color: white !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.gamma-editor-panel .gamma-panel-close {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    width: 28px !important;
    height: 28px !important;
}

.gamma-editor-panel .gamma-panel-content {
    padding: 16px !important;
}

.gamma-editor-panel label,
.gamma-editor-panel .editor-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.gamma-editor-panel input[type="text"],
.gamma-editor-panel textarea,
.gamma-editor-panel select {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    background: #f8fafc !important;
    transition: all 0.2s ease !important;
}

.gamma-editor-panel input:focus,
.gamma-editor-panel textarea:focus,
.gamma-editor-panel select:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1) !important;
    outline: none !important;
    background: white !important;
}

.gamma-editor-panel .editor-richtext,
.gamma-editor-panel [contenteditable] {
    min-height: 100px !important;
    padding: 12px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: white !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.gamma-editor-panel .editor-format-toolbar {
    display: flex !important;
    gap: 4px !important;
    padding: 8px !important;
    background: #f1f5f9 !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
}

.gamma-editor-panel .editor-format-btn,
.gamma-editor-panel .format-btn {
    width: 32px !important;
    height: 32px !important;
    border: none !important;
    background: transparent !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #64748b !important;
    transition: all 0.15s ease !important;
}

.gamma-editor-panel .editor-format-btn:hover,
.gamma-editor-panel .format-btn:hover {
    background: white !important;
    color: #6366f1 !important;
}

.gamma-editor-panel button.primary,
.gamma-editor-panel .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
}

.gamma-editor-panel button.primary:hover,
.gamma-editor-panel .btn-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3) !important;
}

.gamma-editor-panel button.secondary,
.gamma-editor-panel .btn-secondary {
    background: white !important;
    color: #6366f1 !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

/* AI suggestion buttons */
.gamma-editor-panel .suggestion-btn,
.gamma-editor-panel .ai-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 14px !important;
    background: #f0f9ff !important;
    border: 1px solid #bae6fd !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    color: #0369a1 !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
}

.gamma-editor-panel .suggestion-btn:hover,
.gamma-editor-panel .ai-btn:hover {
    background: #e0f2fe !important;
    border-color: #7dd3fc !important;
}

/* Tips section */
.gamma-editor-panel .tip,
.gamma-editor-panel .editor-tip {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    color: #92400e !important;
    margin-top: 12px !important;
}

/* Section dividers */
.gamma-editor-panel hr,
.gamma-editor-panel .divider {
    border: none !important;
    height: 1px !important;
    background: #e2e8f0 !important;
    margin: 16px 0 !important;
}
/* FORCE HIDE PANEL - Ultimate fix */
.gamma-editor-panel {
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.gamma-fullscreen-editor.panel-open .gamma-editor-panel,
body.panel-open .gamma-editor-panel,
.gamma-editor-panel.visible,
.gamma-editor-panel.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* ============================================
   HIDE PANEL TOGGLE BUTTON - Jan 7 17:37 FIX
   ============================================ */
.gamma-panel-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ============================================
   HIDE INDUSTRY SUGGESTIONS BANNER - Jan 7 FIX
   Looks like shit, hiding until redesigned
   ============================================ */
#industrySuggestionsBanner,
.industry-suggestions-banner,
.suggestions-widgets {
    display: none !important;
}

/* Better styling for widget suggestion buttons if shown */
.suggestion-widget-btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}
.suggestion-widget-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.4);
}

/* FIX 2026-01-16: Panel visible by default in step 7 editor */
.gamma-fullscreen-editor .gamma-editor-panel {
    transform: translateX(0) !important;
}
