/* Container do Popup */
#nwp-push-modal {
    display: none; /* Começa oculto */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 99999;
    font-family: Arial, sans-serif;
    padding: 20px;
    border-left: 5px solid #2271b1; /* Azul WordPress */
}

#nwp-push-modal h3 {
    margin-top: 0;
    font-size: 16px;
    color: #333;
}

#nwp-push-modal p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

#nwp-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.nwp-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.nwp-btn-allow {
    background-color: #2271b1;
    color: white;
}

.nwp-btn-deny {
    background-color: transparent;
    color: #888;
}

.nwp-btn-deny:hover {
    text-decoration: underline;
}