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

.toast-item {
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius, 8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s ease;
  pointer-events: auto;
}

.toast-item.show {
  transform: translateX(0);
}

.toast-item.hide {
  transform: translateX(120%);
  opacity: 0;
}

.toast-item.success {
  background: rgba(46, 125, 50, 0.9);
  border-left: 5px solid #4caf50;
}

.toast-item.error {
  background: rgba(211, 47, 47, 0.95);
  border-left: 5px solid #f44336;
}
