.toast-wrapper {
  position: fixed;
  top: 110px;
  right: 10px;
  z-index: 9999;
  animation: slideIn 0.4s ease forwards;
}

.toast-card {
  width: 320px;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.toast-body {
  padding: 14px !important;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.toast-close {
  cursor: pointer;
  opacity: 0.85;
  transition: 0.2s ease;
  flex-shrink: 0;
}

.toast-close:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Progress bar */
.toast-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
}

.toast-progress-bar {
  height: 100%;
  background: #ffffff;
  transition: width 0.1s linear;
}

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