#web-push-permission-prompt {
    position: fixed;
    z-index: 10050;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
}

#web-push-permission-prompt.hidden {
    display: none;
}

.web-push-prompt-card {
    width: 100%;
    max-width: 460px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.web-push-prompt-title {
    margin-bottom: 12px;
    color: #333;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

.web-push-prompt-message {
    margin-bottom: 22px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.web-push-prompt-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.web-push-prompt-enable,
.web-push-prompt-later {
    min-height: 42px;
    padding: 9px 18px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.web-push-prompt-enable {
    border-color: #f58220;
    background: #f58220;
    color: #fff;
}

.web-push-prompt-enable:hover,
.web-push-prompt-enable:focus {
    border-color: #d96b0c;
    background: #d96b0c;
}

.web-push-prompt-later {
    border-color: #ccc;
    background: #fff;
    color: #555;
}

.web-push-prompt-later:hover,
.web-push-prompt-later:focus {
    background: #f2f2f2;
}

.web-push-prompt-enable:disabled,
.web-push-prompt-later:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 520px) {
    .web-push-prompt-card {
        padding: 22px 18px;
    }

    .web-push-prompt-actions {
        flex-direction: column;
    }

    .web-push-prompt-enable,
    .web-push-prompt-later {
        width: 100%;
    }
}
