@charset "UTF-8";

    .global-popup {
      position: absolute;
      background: #222;
      color: #fff;
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 13px;
      font-family: sans-serif;
      z-index: 10000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      border: 1px solid #444;
      
      /* FIX 1: This stops the popup from blocking mouse events */
      pointer-events: none; 
    }