/* Toast Notification Styles */

/* Toast notification styling */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #000;
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3), 3px 3px 0 #000;
  font-family: "Roboto Mono", monospace;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-notification .toast-icon {
  font-size: 1.2rem;
}

/* Dark mode toast */
body.dark-mode .toast-notification {
  border: 2px solid #fff;
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3), 3px 3px 0 #fff;
}

/* Mobile responsive toast */
@media (max-width: 768px) {
  .toast-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    transform: translateY(-100%);
  }
  
  .toast-notification.show {
    transform: translateY(0);
  }
}
