/* ================================================================
   SEP Push Notification Prompt
   ================================================================ */

#sep-push-prompt {
    position: fixed;
    top: 80px;
    right: 20px;
    bottom: auto !important;
    left: auto !important;
    z-index: 99997;
    display: none;
    max-width: 360px;
    width: calc(100% - 40px);
}

#sep-push-prompt-inner {
    background: #1a1a2e;
    color: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    font-family: Arial, Helvetica, sans-serif;
}

#sep-push-prompt-icon {
    font-size: 28px;
    flex-shrink: 0;
}

#sep-push-prompt-text {
    flex: 1;
}

#sep-push-prompt-text strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
}

#sep-push-prompt-text span {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
}

#sep-push-prompt-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.sep-push-btn {
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: opacity .2s;
}
.sep-push-btn:hover { opacity: .85; }

.sep-push-btn-allow {
    background: #10b981;
    color: #fff;
}

.sep-push-btn-deny {
    background: transparent;
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.2) !important;
    font-weight: 400;
}

/* Mobile */
@media (max-width: 480px) {
    #sep-push-prompt {
        position: fixed !important;
        top: 10px !important;
        right: 12px !important;
        left: 12px !important;
        bottom: 40 !important;
        width: auto !important;
        max-width: none !important;
    }
    #sep-push-prompt-inner {
        flex-wrap: wrap;
    }
    #sep-push-prompt-actions {
        flex-direction: row;
        width: 100%;
    }
    .sep-push-btn { flex: 1; text-align: center; }
}