    .global-notification-box {
        opacity: 0;
        left: 50%;
        transform: translateX(-50%);
        position: fixed;
        top: 74px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        z-index: 1005;
        border-radius: 18px;
        border: 1px solid rgba(226, 232, 240, .95);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 18px 44px rgba(16, 24, 40, .11), 0 2px 8px rgba(16, 24, 40, .05);
        backdrop-filter: blur(12px);
        transition: opacity 0.9s ease;
        visibility: hidden;
    }
    .global-notification-box.is-visible {
        opacity: 1;
    }
    @media (max-width: 720px) {
      .global-notification-box {
        top: 84px !important;
        width: calc(100vw - 32px) !important;
      }
    }
    .gn-card-inner {
        display: flex;
        padding: 16px 18px;
        align-items: center;
        gap: 14px;
    }
    .gn-notify-body {
        min-width: 0;
        flex: 1;
    }
    .gn-notify-icon {
        color: #6c2aa2;
        background: #F5F0FF;
        box-shadow: 0 0 0 1px rgba(124, 58, 237, .10) inset;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }
    .gn-notify-icon > img {
        width: 22px !important;
        height: 22px !important;
        display: block !important;
        flex: none !important;
        overflow: visible !important;
        filter: brightness(0) saturate(100%) invert(20%) sepia(47%) saturate(3600%) hue-rotate(260deg) brightness(90%) contrast(96%);
    }
    .gn-notify-heading {
        font-size: 16px;
        line-height: 21px;
        font-weight: 650;
        color: #111827;
        margin: 0 0 5px;
        white-space: nowrap;
    }
    .gn-notify-text{
        font-size: 14px;
        line-height: 20px;
        color: #667085;
        margin: 0;
        max-width: 440px;
    }
    .gn-notify-link {
        font-size: 14px;
        font-weight: 650;
        color: #6c2aa2;
        text-decoration: none;
        transition: color 180ms ease, transform 180ms ease, opacity 180ms ease !important;
        cursor: pointer;
    }
    .gn-notify-link:hover {
        color: #a976ff;
    }
    .gn-notify-close {
        width: 28px;
        height: 28px;
        border: 0;
        background: transparent;
        color: #98A2B3;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
    }
    .gn-notify-close:hover {
        transition: color 180ms ease, transform 180ms ease, opacity 180ms ease !important;
        color: #6c2aa2;
        background: transparent;
    }
    .gn-notify-close:hover::after {
        content: attr(data-title);
        background-color: #F5F0FF;
        color: #6c2aa2;
        padding: 8px;
        padding-left: 12px;
        padding-right: 12px;
        white-space: nowrap;
        font-size: 12px;
        margin-left: auto;
        margin-top: 7%;
        position: fixed;
        border-radius: 4px;
        opacity: .9;
    }