/* Toast container */
.custom-toast {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #28a745;      /* Bootstrap “success” green */
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 1050;
}
.custom-toast span {
  color: #fff !important;
}    
/* Slide down into view */
.custom-toast.show {
  transform: translateY(0);
  opacity: 1;
}
/* Fade out */
.custom-toast.fade-out {
  opacity: 0;
}
/* Close button */
.custom-toast .close-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
}
