/* ==============================================================================
   CCL MODULES: ANALYTICS, HARDWARE, PLUGINS & ASSETS (LIQUID GLASS)
   ============================================================================== */
@keyframes ccl-pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
@keyframes ccl-morph {
    0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25%  { border-radius: 40% 60% 50% 50% / 40% 50% 50% 60%; }
    50%  { border-radius: 50% 50% 70% 30% / 50% 50% 60% 40%; }
    75%  { border-radius: 30% 70% 40% 60% / 60% 40% 30% 70%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
@keyframes ccl-breathe {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 35px rgba(0,0,0,0.15), inset 0 3px 8px rgba(255,255,255,0.6), inset 0 -3px 8px rgba(255,255,255,0.2); }
    50% { transform: scale(var(--ccl-blob-scale, 1.05)); box-shadow: 0 25px 50px rgba(0,0,0,0.25), inset 0 5px 12px rgba(255,255,255,0.8), inset 0 -4px 10px rgba(255,255,255,0.3); }
}

.ccl-perf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 25px; }
.ccl-health-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; margin-bottom: 25px; }
.ccl-app-grid, .ccl-cron-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top:15px; }
.ccl-asset-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 25px; }

/* ==========================================================================
   Liquid Glass Depth: Main Cards (Optimized for Light Mode)
   ========================================================================== */
.ccl-perf-card, 
.ccl-health-card, 
.ccl-plugin-card { 
    /* Replaced heavy 35% white with sheer directional gradient */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%) !important; 
    backdrop-filter: blur(32px) saturate(220%) !important; 
    -webkit-backdrop-filter: blur(32px) saturate(220%) !important; 
    
    /* Directional rim lighting instead of a uniform border */
    border: 1px solid rgba(255, 255, 255, 0.2) !important; 
    border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
    
    /* Removed 90% white inset; applied soft surface tension and drop shadow */
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.4), 
        0 15px 35px -5px rgba(15, 23, 42, 0.1), 
        0 5px 15px rgba(15, 23, 42, 0.05) !important; 
        
    border-radius: var(--ccl-radius-lg, 24px) !important; 
    padding: 25px; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

/* ==========================================================================
   Dark Mode Override for Main Cards (Standalone)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    body.woocommerce-account .ccl-perf-card, 
    body.woocommerce-account .ccl-health-card, 
    body.woocommerce-account .ccl-plugin-card {
        /* Ultra-sheer dark mode transparency (6% to 1%) */
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
        
        /* Razor-thin glass edges */
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.10) !important;
        
        /* Deeper drop shadow for floating depth against the dark background */
        box-shadow: 
            inset 0 1px 1px rgba(255, 255, 255, 0.1), 
            0 15px 35px -5px rgba(0, 0, 0, 0.4) !important;
    }
}



/* Liquid Glass Depth: App & Cron Cards */
.ccl-app-card, .ccl-cron-card { 
    background: var(--ccl-glass-bg, rgba(255, 255, 255, 0.35)); 
    backdrop-filter: blur(32px) saturate(220%); 
    -webkit-backdrop-filter: blur(32px) saturate(220%); 
    border: 1px solid var(--ccl-glass-border, rgba(255, 255, 255, 0.4)); 
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.9), inset 0 -2px 5px rgba(255, 255, 255, 0.3), 0 15px 35px -5px rgba(15, 23, 42, 0.1), 0 5px 15px rgba(15, 23, 42, 0.05); 
    border-radius: var(--ccl-radius-md, 16px); 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.ccl-app-card:hover, .ccl-cron-card:hover {
    background: var(--ccl-glass-bg-hover, rgba(255, 255, 255, 0.5));
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 1), inset 0 -2px 8px rgba(255, 255, 255, 0.4), 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 10px 20px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.ccl-cron-card { justify-content: space-between; }
.ccl-perf-card h3, .ccl-health-card h3 { margin: 0 0 15px 0; font-size: 13px; font-weight: 800; color: var(--ccl-text-main); text-transform: uppercase; border-bottom: 1px solid rgba(128,128,128,0.2); padding-bottom: 10px; letter-spacing: .5px; }

.ccl-perf-chart-wrap { position: relative; height: 220px; width: 100%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.ccl-perf-chart-wrap.full-width { height: 300px; }
.ccl-data-list { list-style: none; padding: 0; margin: 0; max-height: 300px; overflow-y: auto; padding-right: 5px; }
.ccl-data-list::-webkit-scrollbar { width: 4px; }
.ccl-data-list::-webkit-scrollbar-thumb { background: rgba(128,128,128,0.2); border-radius: 4px; }
.ccl-data-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(128,128,128,0.1); font-size: 13px; }
.ccl-data-list li:last-child { border-bottom: none; }
.ccl-data-list li strong { color: var(--ccl-text-main); font-weight: 600; display: block; max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccl-data-list li span { background: rgba(128,128,128,0.05); border: 1px solid rgba(255,255,255,0.4); padding: 4px 8px; border-radius: 8px; font-size: 11px; font-weight: 700; color: var(--ccl-text-body); font-family: monospace; box-shadow: inset 0 2px 4px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(255,255,255,0.3); } /* Indented pool effect */
div.google-visualization-tooltip { z-index: 999 !important; border-radius: 12px !important; box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.15), inset 0 2px 4px rgba(255,255,255,0.9) !important; border: 1px solid rgba(255,255,255,0.5) !important; font-family: inherit !important; padding: 10px 14px !important; background: rgba(255,255,255,0.75) !important; backdrop-filter: blur(24px) saturate(200%) !important; }

.ccl-rt-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.ccl-rt-table th { text-align: left; padding: 8px; border-bottom: 1px solid rgba(128,128,128,0.1); color: var(--ccl-text-muted); text-transform: uppercase; font-size: 10px; letter-spacing: 1px; }
.ccl-rt-table td { padding: 10px 8px; border-bottom: 1px solid rgba(128,128,128,0.1); color: var(--ccl-text-main); }
.ccl-live-indicator { display: inline-block; width: 8px; height: 8px; background: #10b981; border-radius: 50%; margin-right: 6px; animation: ccl-pulse 2s infinite; }

.ccl-blob-container { display: flex; justify-content: center; align-items: center; padding: 20px 0; }
.ccl-blob { width: 170px; height: 170px; background: linear-gradient(135deg, var(--ccl-blob-c1, #10b981), var(--ccl-blob-c2, #3b82f6)); transition: background 1s ease; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; animation: ccl-morph 8s linear infinite, ccl-breathe var(--ccl-blob-speed, 5s) ease-in-out infinite; box-shadow: inset 0 5px 15px rgba(255,255,255,0.6), inset 0 -5px 15px rgba(0,0,0,0.1), 0 15px 35px rgba(0,0,0,0.15); }
.ccl-blob-val { font-size: 42px; font-weight: 900; line-height: 1; text-shadow: 0 4px 10px rgba(0,0,0,0.25); transition: font-size 0.3s; }
.ccl-blob-status { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; text-shadow: 0 2px 5px rgba(0,0,0,0.25); }

.ccl-hw-stat { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(128,128,128,0.2); font-size: 13px; align-items:center; transition: all 0.4s ease; }
.ccl-hw-stat:last-child { border-bottom: none; }
.ccl-hw-lbl { font-weight: 700; color: var(--ccl-text-muted); display:flex; align-items:center; gap:8px; }
.ccl-hw-val { font-family: monospace; font-weight: 700; color: var(--ccl-text-main); background: rgba(128,128,128,0.05); padding:4px 8px; border-radius:8px; border:1px solid rgba(255,255,255,0.4); box-shadow: inset 0 2px 5px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,0.3); transition: all 0.4s ease; } /* Liquid indent */
.ccl-val-flash { background: var(--ccl-primary-light) !important; color: var(--ccl-primary) !important; border-color: rgba(79, 70, 229, 0.3) !important; box-shadow: inset 0 2px 5px rgba(79, 70, 229, 0.1), 0 0 10px rgba(79, 70, 229, 0.2) !important; }

.ccl-plugin-list { display: flex; flex-direction: column; gap: 15px; }
.ccl-plugin-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 15px; }
.ccl-plugin-card-title { margin: 0; font-size: 15px; font-weight: 800; color: var(--ccl-text-main); }
.ccl-plugin-card-meta { font-size: 11px; color: var(--ccl-text-muted); font-family: monospace; display: block; margin-top: 4px; }
.ccl-plugin-update-banner { background: rgba(245, 158, 11, 0.15); border-left: 3px solid #f59e0b; padding: 12px 15px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; box-shadow: inset 0 2px 4px rgba(245, 158, 11, 0.05); }
.ccl-plugin-update-banner.major { background: rgba(239, 68, 68, 0.15); border-left-color: var(--ccl-danger); box-shadow: inset 0 2px 4px rgba(239, 68, 68, 0.05); }
.ccl-plugin-actions { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; border-top: 1px dashed rgba(128,128,128,0.2); padding-top: 15px; }

.ccl-cron-hook { font-family: monospace; font-size: 12px; font-weight: 700; color: var(--ccl-primary); word-break: break-all; margin-bottom: 10px; padding-bottom:10px; border-bottom:1px solid rgba(128,128,128,0.2); }
.ccl-cron-meta { font-size: 12px; color: var(--ccl-text-muted); font-weight:600; display:flex; justify-content:space-between; margin-bottom:15px; }

/* Liquid Glass Depth: Asset Cards */
.ccl-asset-card { 
    background: var(--ccl-glass-bg, rgba(255, 255, 255, 0.35)); 
    backdrop-filter: blur(32px) saturate(220%); 
    -webkit-backdrop-filter: blur(32px) saturate(220%); 
    border: 1px solid var(--ccl-glass-border, rgba(255, 255, 255, 0.4)); 
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.9), inset 0 -2px 5px rgba(255, 255, 255, 0.3), 0 15px 35px -5px rgba(15, 23, 42, 0.1), 0 5px 15px rgba(15, 23, 42, 0.05); 
    border-radius: var(--ccl-radius-lg, 24px); 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
    position: relative; 
}
.ccl-asset-card:hover { 
    background: var(--ccl-glass-bg-hover, rgba(255, 255, 255, 0.5)); 
    transform: translateY(-4px); 
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 1), inset 0 -2px 8px rgba(255, 255, 255, 0.4), 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 10px 20px rgba(15, 23, 42, 0.1); 
    border-color: rgba(255, 255, 255, 0.6); 
}
.ccl-asset-preview { height: 160px; background: rgba(128,128,128,0.05); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid rgba(255,255,255,0.3); box-shadow: inset 0 -4px 10px rgba(0,0,0,0.02); }
.ccl-asset-preview img { width: 100%; height: 100%; object-fit: cover; }
.ccl-asset-preview i { font-size: 48px; color: var(--ccl-text-muted); opacity: 0.5; }
.ccl-asset-meta { padding: 16px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.ccl-asset-title { font-size: 13px; font-weight: 700; color: var(--ccl-text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.ccl-asset-subtitle { font-size: 11px; color: var(--ccl-text-muted); font-family: monospace; }
.ccl-asset-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 15px; }
.ccl-asset-views { position: absolute; top: 10px; right: 10px; background: rgba(15, 23, 42, 0.6); color: #fff; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; backdrop-filter: blur(8px) saturate(150%); display: flex; align-items: center; gap: 4px; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.3); }

/* Glossy Action Buttons */
.ccl-copy-btn { background: rgba(255,255,255,0.4); color: var(--ccl-text-main); border: 1px solid rgba(255,255,255,0.5); padding: 8px; border-radius: var(--ccl-radius-sm); font-size: 12px; font-weight: 700; cursor: pointer; transition: var(--ccl-transition); display: flex; align-items: center; justify-content: center; gap: 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.03), inset 0 1px 2px rgba(255,255,255,0.8); }
.ccl-copy-btn:hover { background: rgba(255,255,255,0.8); color: var(--ccl-primary); box-shadow: 0 6px 15px rgba(0,0,0,0.06), inset 0 1px 2px rgba(255,255,255,1); }
.ccl-del-btn { background: rgba(239, 68, 68, 0.15); color: var(--ccl-danger); border: 1px solid rgba(239, 68, 68, 0.3); padding: 8px; border-radius: var(--ccl-radius-sm); cursor: pointer; transition: var(--ccl-transition); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.03), inset 0 1px 2px rgba(255,255,255,0.4); }
.ccl-del-btn:hover { background: var(--ccl-danger); color: #fff; box-shadow: 0 6px 15px rgba(239, 68, 68, 0.3), inset 0 1px 2px rgba(255,255,255,0.5); }

/* Liquid Pool Dropzone */
#ccl-dropzone { border: 2px dashed rgba(255,255,255,0.6); background: rgba(255,255,255,0.2); backdrop-filter: blur(16px) saturate(180%); padding: 40px 20px; text-align: center; border-radius: var(--ccl-radius-lg); cursor: pointer; margin-bottom: 25px; transition: all 0.4s ease; box-shadow: inset 0 4px 15px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,255,0.4); }
#ccl-dropzone.dragover { background: rgba(79, 70, 229, 0.15); border-color: var(--ccl-primary); box-shadow: inset 0 4px 15px rgba(79, 70, 229, 0.1), inset 0 0 0 2px rgba(79, 70, 229, 0.3); }

/* Modules Media Queries */
@media (max-width: 860px) {
    .ccl-health-grid { grid-template-columns: 1fr; }
}

/* Utility Classes */
.ccl-hidden { display: none !important; }
.ccl-align-left { text-align: left !important; }
.ccl-align-center { text-align: center !important; }
.ccl-align-right { text-align: right !important; }
.ccl-text-primary { color: var(--ccl-primary); }
.ccl-cursor-pointer { cursor: pointer; }
.ccl-mt-10 { margin-top: 10px; }
.ccl-mt-15 { margin-top: 15px; }
.ccl-spacer { flex-grow: 1; }

/* Pagination */
.ccl-pagination-meta { font-size: 13px; color: var(--ccl-text-muted); font-weight: 500; }
.ccl-pagination-meta strong { color: var(--ccl-text-main); }

/* WYSIWYG Editor */
.ccl-editor-separator { border-right: 1px solid rgba(128,128,128,0.2); margin: 0 5px; }
.ccl-editor-media-btn { color: var(--ccl-primary); font-weight: bold; }
.ccl-inline-dl-btn { display: inline-block; padding: 10px 15px; background: rgba(79, 70, 229, 0.1); color: var(--ccl-primary); border-radius: 8px; font-weight: bold; text-decoration: none; margin: 10px 0; box-shadow: inset 0 1px 2px rgba(255,255,255,0.4); }

/* Dropzone Panels */
.ccl-dropzone-panel { text-align: center; padding: 40px 20px; cursor: pointer; border: 1px dashed rgba(255,255,255,0.5); background: rgba(255,255,255,0.2); transition: 0.4s; border-radius: var(--ccl-radius-md); box-shadow: inset 0 3px 8px rgba(0,0,0,0.04); }
.ccl-dropzone-panel.dragover { background: rgba(79, 70, 229, 0.15); border-color: var(--ccl-primary-light); box-shadow: inset 0 4px 12px rgba(79, 70, 229, 0.1); }
.ccl-dropzone-icon { color: var(--ccl-primary); margin-bottom: 15px; pointer-events: none; }
.ccl-dropzone-title { margin: 0 0 5px 0; color: var(--ccl-primary); pointer-events: none; }
.ccl-dropzone-desc { margin: 0; font-size: 13px; color: var(--ccl-text-muted); pointer-events: none; }

/* Taxonomy Manager (CSS Only Toggle) */
.ccl-taxonomy-wrap { display: block; }
.ccl-taxonomy-label { display: block; margin-bottom: 6px; font-weight: 600; }
.ccl-cat-container { max-height: 140px; overflow-y: auto; padding-right: 5px; }
.ccl-cat-quick-add { font-size: 12px; margin-top: 5px; }
.ccl-tag-container { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ccl-feat-img-preview { width: 100%; border-radius: 12px; margin-top: 10px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }

/* Glossy Buoyant Pills */
.ccl-cat-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    margin: 0 5px 5px 0;
    color: var(--ccl-text-main);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04), inset 0 1px 2px rgba(255,255,255,0.8);
}
.ccl-cat-pill:has(input:checked) {
    background: linear-gradient(135deg, var(--ccl-primary), var(--ccl-primary-hover));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3), inset 0 2px 4px rgba(255,255,255,0.4);
}

/* Modals & Overlays */
.ccl-confirm-title { margin: 0 0 15px 0; font-size: 1.25rem; color: var(--ccl-text-main); font-weight: 800; }
.ccl-confirm-message { margin: 0 0 30px 0; color: var(--ccl-text-body); font-size: 0.95rem; line-height: 1.5; }
.ccl-btn-cancel { background: rgba(255,255,255,0.4); color: var(--ccl-text-main); box-shadow: 0 4px 10px rgba(0,0,0,0.05), inset 0 1px 2px rgba(255,255,255,0.8); flex: 1; border: 1px solid rgba(255,255,255,0.5); }
.ccl-btn-ok { flex: 1; }
.ccl-btn-destructive { background: linear-gradient(135deg, var(--ccl-danger), #b91c1c) !important; border: none !important; color: #fff !important; box-shadow: 0 6px 15px rgba(239, 68, 68, 0.35), inset 0 2px 4px rgba(255,255,255,0.3) !important; }

.ccl-modal-title { margin: 0; font-size: 1.15rem; color: var(--ccl-text-main); font-weight: 800; }
.ccl-modal-close-btn { background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.5); font-size: 20px; line-height: 1; cursor: pointer; color: var(--ccl-text-muted); padding: 0; width: 36px; height: 36px; border-radius: 50%; transition: var(--ccl-transition); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05), inset 0 1px 2px rgba(255,255,255,0.8); }
.ccl-modal-close-btn:hover { background: rgba(255,255,255,0.8); color: var(--ccl-danger); box-shadow: 0 6px 15px rgba(0,0,0,0.08), inset 0 1px 2px rgba(255,255,255,1); }
.ccl-modal-loader { padding: 40px; text-align: center; color: var(--ccl-text-muted); }
.ccl-modal-error { padding: 20px; color: var(--ccl-danger); text-align: center; }

/* Media Drawer */
.ccl-drawer-panel { width: 90%; max-width: 800px; height: 80vh; display: flex; flex-direction: column; }
.ccl-drawer-header { display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.ccl-drawer-title { margin: 0; color: white; }
.ccl-drawer-close { background: transparent; border: none; color: white; font-size: 20px; cursor: pointer; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.ccl-drawer-grid { overflow-y: auto; flex: 1; display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 15px; }
.ccl-drawer-loading { color: var(--ccl-text-muted); text-align: center; grid-column: 1/-1; }
.ccl-drawer-empty { grid-column: 1/-1; text-align: center; color: white; }
.ccl-drawer-item { cursor: pointer; border-radius: 12px; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); background: rgba(0, 0, 0, 0.4); transition: 0.3s; box-shadow: inset 0 2px 4px rgba(0,0,0,0.5); }
.ccl-drawer-item:hover { border-color: var(--ccl-primary); box-shadow: 0 10px 20px rgba(0,0,0,0.3), inset 0 2px 4px rgba(0,0,0,0.2); transform: translateY(-2px); }
.ccl-drawer-thumb { width: 100%; height: 120px; object-fit: cover; display: block; }
.ccl-drawer-doc { height: 120px; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.3); }
.ccl-drawer-name { padding: 8px; font-size: 11px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: white; backdrop-filter: blur(4px); }

/* Asset Lightbox (Deep Refractive Glass) */
.ccl-lightbox-panel { width: 90%; max-width: 900px; display: flex; flex-wrap: wrap; gap: 30px; position: relative; }
.ccl-lightbox-close { position: absolute; top: 15px; right: 15px; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; width: 40px; height: 40px; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; z-index: 10; backdrop-filter: blur(10px); box-shadow: 0 4px 10px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.4); }
.ccl-lightbox-close:hover { background: rgba(255,255,255,0.3); transform: scale(1.05); }
.ccl-lightbox-preview { 
    flex: 2; min-width: 300px; display: flex; align-items: center; justify-content: center; 
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%); 
    backdrop-filter: blur(32px) saturate(200%); 
    border-radius: 24px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.15); 
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.25), inset 0 -2px 6px rgba(0,0,0,0.6), 0 30px 60px -10px rgba(0,0,0,0.7);
}
.ccl-lightbox-img { max-width: 100%; max-height: 60vh; border-radius: 12px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); }
.ccl-lightbox-doc { color: rgba(255,255,255,0.6); }
.ccl-lightbox-details { flex: 1; min-width: 250px; display: flex; flex-direction: column; gap: 15px; padding-top: 10px; }
.ccl-lightbox-title { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-bottom: 10px; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.ccl-lb-meta { font-size: 13px; color: rgba(255,255,255,0.6); }
.ccl-lb-meta span { color: white; word-break: break-all; }
.ccl-lb-actions { margin-top: auto; padding-top: 15px; }

@keyframes cclFadeOut { to { opacity: 0; transform: translateY(10px) scale(0.95); } }
.ccl-toast-fade-out { animation: cclFadeOut 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; }

/* Accessibility & Screen Readers */
.ccl-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Typography & Icon Utilities */
.ccl-font-bold { font-weight: bold !important; }
.ccl-ve-icon-sm { font-size: 10px; margin-left: 4px; }

/* ==============================================================================
   NETWORK HEALTH & NOC STYLES (DARK LIQUID GLASS)
   ============================================================================== */

/* Fullscreen NOC Command Center */
.ccl-noc-container {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999999;
    /* Immersive dark liquid depth */
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #f8fafc;
    overflow: hidden;
    font-family: sans-serif;
    cursor: none;
}

.ccl-noc-exit-wrap {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.ccl-noc-exit-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    backdrop-filter: blur(16px) saturate(150%);
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.3);
}

.ccl-noc-exit-btn:hover { background: rgba(255,255,255,0.15); box-shadow: 0 6px 20px rgba(0,0,0,0.3), inset 0 1px 2px rgba(255,255,255,0.5); }

.ccl-noc-widget {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Extreme volumetric lighting for dark liquid widget */
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2), inset 0 -3px 8px rgba(0, 0, 0, 0.7), 0 40px 80px -15px rgba(0, 0, 0, 0.9);
    border-radius: 32px;
    padding: 40px;
    width: 540px;
    transform: translate(0px, 0px);
    will-change: transform;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ccl-noc-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #94a3b8;
    margin-bottom: 25px;
    margin-top: 0;
    font-weight: 800;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ccl-noc-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ccl-noc-val {
    font-size: 18px;
    font-family: monospace;
    font-weight: 800;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

.ccl-noc-footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    text-align: center;
    font-size: 9px;
    letter-spacing: 2px;
    color: #475569;
    text-transform: uppercase;
}

/* Plugin Info Modal (Liquid Glass) */
.ccl-info-modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,23,42,0.3);
    backdrop-filter: blur(16px) saturate(150%);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ccl-info-modal-panel {
    background: var(--ccl-glass-bg, rgba(255,255,255,0.4));
    backdrop-filter: blur(32px) saturate(220%);
    -webkit-backdrop-filter: blur(32px) saturate(220%);
    border: 1px solid var(--ccl-glass-border, rgba(255,255,255,0.5));
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.9), inset 0 -2px 6px rgba(255, 255, 255, 0.3), 0 30px 60px -15px rgba(15, 23, 42, 0.2);
    padding: 35px;
    border-radius: var(--ccl-radius-xl, 32px);
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.ccl-info-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px -10px rgba(0,0,0,0.1);
}

.ccl-info-modal-close {
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--ccl-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05), inset 0 1px 2px rgba(255,255,255,0.8);
}
.ccl-info-modal-close:hover { background: rgba(255,255,255,0.8); color: var(--ccl-danger); box-shadow: 0 6px 15px rgba(0,0,0,0.08), inset 0 1px 2px rgba(255,255,255,1); transform: scale(1.05); }

.ccl-info-modal-content {
    overflow-y: auto;
    flex: 1;
    padding-right: 15px;
    color: var(--ccl-text-main);
    font-size: 13px;
    line-height: 1.6;
}
/* Ensure the scrollbar inside the modal matches the liquid theme */
.ccl-info-modal-content::-webkit-scrollbar { width: 6px; }
.ccl-info-modal-content::-webkit-scrollbar-thumb { background: rgba(128,128,128,0.2); border-radius: 6px; }

/* Update Button Progress Bar (Liquid Track) */
.ccl-btn-progress-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.ccl-btn-progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(255,255,255,0.4);
}
.ccl-btn-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ccl-primary), var(--ccl-primary-hover));
    width: 5%;
    transition: width 0.5s linear;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.6), inset 0 2px 2px rgba(255,255,255,0.4);
}

/* --- The Aurora Dashboard --- */
.ccl-aurora-dashboard {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

/* Massive Central Data Tank */
.ccl-glass-tank {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 30px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.ccl-tank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.ccl-tank-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ccl-text-main);
}

.ccl-tank-legend {
    display: flex;
    gap: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ccl-core-chart-wrap {
    height: 450px; /* Massive display */
    width: 100%;
}

/* Liquid Orbs (KPIs) */
.ccl-orb-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ccl-glass-orb {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 0 20px 30px -10px rgba(255, 255, 255, 0.15), /* Inner top highlight */
        inset 0 -20px 30px -10px rgba(0, 0, 0, 0.5), /* Inner bottom shadow */
        0 15px 25px -5px rgba(0, 0, 0, 0.5); /* Drop shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ccl-glass-orb:hover {
    transform: translateY(-10px) scale(1.05);
}

/* The curved reflection on the top of the orb */
.ccl-orb-glare {
    position: absolute;
    top: 5%;
    left: 15%;
    width: 70%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50% 50% 20% 20%;
    pointer-events: none;
}

.ccl-orb-value {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    z-index: 2;
}

.ccl-orb-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ccl-text-muted);
    text-align: center;
    margin-top: 8px;
    z-index: 2;
}

/* Mobile Friendly Scaling */
@media screen and (max-width: 768px) {
    .ccl-core-chart-wrap {
        height: 300px;
    }
    .ccl-orb-container {
        gap: 15px;
    }
    .ccl-glass-orb {
        width: 120px;
        height: 120px;
    }
    .ccl-orb-value { font-size: 24px; }
    .ccl-orb-label { font-size: 9px; }
}

.site-info {
    display: none !important;
}

.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    display: none !important;
}