#popup-helper-arrow {
    display: none;
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid #007AFF;
    z-index: 999999;
    animation: popup-helper-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

#popup-helper-arrow:after {
    content: "Allow Popups";
    position: absolute;
    color: #FFFFFF;
    background: #007AFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    left: 50%;
    transform: translateX(-50%);
    top: 16px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 0.2px;
}

@keyframes popup-helper-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-2px); }
} 
