#custom-notification-prompt {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    z-index: 10000;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: block;
    pointer-events: none;
}

/* Shown prompt (top center) */
#custom-notification-prompt.show.top-center {
    top: 20px;
    transform: translateX(-50%) translateY(20px);
    opacity: 1;
    pointer-events: auto;
}

/* Bottom center position */
#custom-notification-prompt.bottom-center {
    bottom: 0;
    top: auto;
    transform: translateX(-50%) translateY(100%);
}
#custom-notification-prompt.show.bottom-center {
    transform: translateX(-50%) translateY(-20px);
    opacity: 1;
    pointer-events: auto;
}

/* Bottom right */
#custom-notification-prompt.bottom-right {
    left: auto;
    right: 20px;
    bottom: 0;
    top: auto;
    transform: translateY(100%);
}
#custom-notification-prompt.show.bottom-right {
    transform: translateY(-20px);
    opacity: 1;
    pointer-events: auto;
}

/* Top right */
#custom-notification-prompt.top-right {
    left: auto;
    right: 20px;
    top: 0;
    transform: translateY(-100%);
}
#custom-notification-prompt.show.top-right {
    top: 20px;
    transform: translateY(20px);
    opacity: 1;
    pointer-events: auto;
}


.cnp-card {
    background: var(--base-3);
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 320px;
    width: 90vw;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

.cnp-site-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.cnp-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.cnp-card p {
    font-size: 14px;
    color: var(--contrast-2);
    margin-bottom: 20px;
    line-height: 1.4;
}

#cnp-allow-btn {
    color: var(--base-3);
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

.cnp-secondary-btn {
    background: none;
    border: none;
    color: var(--contrast-3);
    font-size: 14px;
    cursor: pointer;
}

.cnp-close-btn {
    position: absolute;
    top: 10px; right: 12px;
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--contrast-2);
}

.cnp-close-btn:hover {
    color: var(--contrast-3);
}


#notification-bell {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--base-3);
    border: 2px solid #666;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none; /* initially hidden */
    padding: 3px;
}

#notification-help {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

#notification-help-content {
    background: var(--base-3);
    padding: 20px;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
    position: relative;
    text-align: left;
}

#notification-help-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

#notification-help-close {
    position: absolute;
    top: 10px; right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: var(--contrast-3);
}
#notification-help-close:hover {
    color: #000;
}

#browser-instructions code{
    background: var(--contrast-3);
    padding: 5px 8px;
    border-radius: 5px;
    color: var(--base-3);
}

#pre-url{
    padding: 15px;
    position: relative;
}

#copy-url-btn{
    padding: 4px 8px;
    position: absolute;
    right: 0px;
    bottom: 50px;
    background: var(--base-3);
}

#copy-url-btn svg{
    fill: var(--contrast-2);
    background-color: rgba(0, 0, 0, 0);
}
}
