.wc-push-notify-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 400px;
    z-index: 999999;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.wc-push-notify-prompt.show {
    display: block;
}

.wc-push-notify-prompt-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.wc-push-notify-prompt-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.wc-push-notify-prompt-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.wc-push-notify-prompt-message {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.wc-push-notify-prompt-buttons {
    display: flex;
    gap: 8px;
}

.wc-push-notify-prompt-button {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.wc-push-notify-prompt-allow {
    background: #7f54b3;
    color: white;
}

.wc-push-notify-prompt-allow:hover {
    background: #6c4699;
}

.wc-push-notify-prompt-deny {
    background: #f0f0f0;
    color: #666;
}

.wc-push-notify-prompt-deny:hover {
    background: #e4e4e4;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
