.custom-notification {
  position: fixed;
  padding: 15px;
  top: 15%;
  left: 20px;
  z-index: 100;
  animation: slide-up-fade-in ease 1s forwards;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 90px;
  background: #CF5C36;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes slide-up-fade-in {
  0% { opacity: 0; transform: translateY(200px); }
  100% { opacity: 1; transform: translateY(0); }
}
