#dh-web-push-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.90);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#dh-web-push-modal {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    border-top: 4px solid #e01c1c; /* Noorpost-style red accent */
}

#dh-web-push-modal .dh-web-push-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#dh-web-push-modal h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

#dh-web-push-modal p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.dh-web-push-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dh-web-push-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#dh-web-push-subscribe {
    background-color: #e01c1c; /* Default to red, will be overridden by JS if customized */
    color: #fff;
    box-shadow: 0 4px 6px rgba(224, 28, 28, 0.2);
}

#dh-web-push-subscribe:hover {
    background-color: #c91818;
    box-shadow: 0 6px 12px rgba(224, 28, 28, 0.3);
}

#dh-web-push-later {
    background-color: #f0f0f0;
    color: #444;
}

#dh-web-push-later:hover {
    background-color: #e4e4e4;
    color: #111;
}

