.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: toast-in 0.35s ease, toast-out 0.35s ease forwards;
  animation-delay: 0s, 3.5s;
  max-width: 400px;
  word-break: break-word;
}

.toast.success {
  background: linear-gradient(135deg, #1db954 0%, #1aa34a 100%);
}

.toast.error {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.toast.info {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.toast.warning {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0 0 0 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}

@keyframes toast-in {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toast-out {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

@media (max-width: 720px) {
  .toast-container {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .toast {
    max-width: 100%;
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}
