#notify-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  #notify-box {
    background: #fff;
    border-radius: 12px;
    max-width: 320px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pop 0.3s ease;
  }
  @keyframes pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  #notify-box h3 {
    color: #1E3A8A;
    margin-bottom: 10px;
  }
  #notify-box button {
    border: none;
    padding: 10px 18px;
    margin: 10px 5px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
  }
  #notify-allow {
    background: #1E3A8A;
    color: #fff;
  }
  #notify-later {
    background: #E2E8F0;
  }