 
/* Stilizo mesazhin */
.my-custom-toast {
  background: linear-gradient(to right, #1a1a1a, #515151b3);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 0rem 1.5rem;
  font-size: 13px;
  position: relative;
}

/* Shto progress bar animacion (opsional) */
.my-custom-toast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  animation: progressBar linear forwards 4s; /* 4s = duration */
}

@keyframes progressBar {
  from { width: 100%; }
  to { width: 0%; }
}
 
