.notification-prompt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  z-index: 1000;
}

.notification-prompt-content {
  text-align: center;
}

.notification-prompt h3 {
  margin-top: 0;
  color: #333;
}

.notification-prompt p {
  margin-bottom: 15px;
  color: #666;
}

.notification-prompt button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.notification-prompt .close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
}