/* ── WebView Panel (right) ─────────────────────────── */
    #webview-panel {
      width: var(--panel-width);
      max-width: 800px;
      display: none;
      flex-direction: column;
      border-left: 1px solid var(--glass-border);
      background: #fff;
    }
    #webview-panel.open { display: flex; }

    .webview-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 12px;
      background: rgba(9,9,11,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--glass-border);
      gap: 8px;
    }

    .webview-nav {
      display: flex;
      gap: 4px;
    }

    .webview-url {
      flex: 1;
      font-size: 11px;
      color: var(--text-dim);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding: 4px 10px;
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
    }

    .webview-loading {
      width: 100%;
      height: 2px;
      background: var(--border);
      position: relative;
      overflow: hidden;
    }
    .webview-loading.active::after {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 30%;
      background: var(--accent);
      animation: loadSlide 1s ease infinite;
    }
    @keyframes loadSlide {
      0% { left: -30%; }
      100% { left: 100%; }
    }

    .filter-badge.warning {
      background: rgba(246, 190, 0, 0.14);
      color: var(--yellow);
      border-color: rgba(246, 190, 0, 0.28);
    }
    .filter-badge.blocked {
      background: rgba(255, 110, 110, 0.12);
      color: #ff9090;
      border-color: rgba(255, 110, 110, 0.24);
    }

    #ricardo-webview {
      flex: 1;
      border: none;
    }
