.notification-banner {
  background-color: #ffc72c; /* Matching the yellow color */
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
}

.notification-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.notification-text {
  font-size: 16px;
  margin: 10px 0 0 0;
}

.notification-banner::before,
.notification-banner::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2); /* Lightly colored confetti shapes */
  border-radius: 50%;
}

.notification-banner::before {
  top: 10px;
  left: 10px;
}

.notification-banner::after {
  top: 10px;
  right: 10px;
}

/* Add more confetti shapes */
.notification-banner .confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

.confetti-1 {
  top: 20px;
  left: 50px;
}

.confetti-2 {
  top: 30px;
  right: 80px;
}

.confetti-3 {
  bottom: 20px;
  left: 20px;
}

.confetti-4 {
  bottom: 30px;
  right: 40px;
}
