/* Toast Notification Container */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 500px;
  background: linear-gradient(135deg, #a8d5ba, #7bc47f);
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  padding: 16px 20px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-left: 4px solid #4caf50;
}

.toast-notification.show {
  transform: translateX(0);
  opacity: 1;
}

/* Toast Content */
.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Toast Icon */
.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Toast Message */
.toast-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

/* Toast Close Button */
.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}

/* Success Toast */
.toast-success {
  background: linear-gradient(135deg, #a8d5ba, #7bc47f);
  border-left-color: #4caf50;
}

.toast-success .toast-icon {
  background: rgba(76, 175, 80, 0.3);
}

/* Error Toast */
.toast-error {
  background: linear-gradient(135deg, #f7b2c1, #e97c7c);
  border-left-color: #f44336;
}

.toast-error .toast-icon {
  background: rgba(244, 67, 54, 0.3);
}

/* Warning Toast */
.toast-warning {
  background: linear-gradient(135deg, #ffeaa7, #fab1a0);
  border-left-color: #ff9800;
}

.toast-warning .toast-icon {
  background: rgba(255, 152, 0, 0.3);
}

/* Info Toast */
.toast-info {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  border-left-color: #2196f3;
}

.toast-info .toast-icon {
  background: rgba(33, 150, 243, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .toast-notification {
    left: 20px;
    right: 20px;
    min-width: auto;
    max-width: none;
    transform: translateY(-100px);
  }

  .toast-notification.show {
    transform: translateY(0);
  }
}