body {
  font-family: Arial, sans-serif;
  background: #6f5de3;
  margin: 0;
  padding: 40px;
  color: #333;
}

.container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
}

/* Notification box */
.notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none; /* hidden by default */
  animation: slideIn 0.5s ease;
}

.notification p {
  margin: 0;
  font-size: 15px;
}

.notification .time-ago {
  font-size: 13px;
  color: #777;
}

/* Animation */
@keyframes slideIn {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
